1. 문제

 

4. 다음 main() 함수가 실행되도록 Point 클래스를 상속받는 ColorPoint 클래스를 작성하고, 전체 프로그램을 완성하라.

 

 

2. 결과

 

 

 

3. 코드

 


#include <iostream>
#include <string>
using namespace std;

class Point {
	int x, y;
public :
	Point(int x, int y) { this->x = x; this->y = y; }
	int getX() { return x; }
	int getY() { return y; }
protected :
	void move(int x, int y) { this->x = x; this->y = y; }
};

class ColorPoint : public Point {
	string name;
public :
	ColorPoint(int x=0, int y=0, string name="BLACK") : Point(x, y) {
		this->name = name; }
	void setPoint(int x, int y){ move(x, y); }
	void setColor(string name) { this->name = name; }
	void show() { cout << name << "색으로 (" << getX() << "," << getY() << ")에 위치한 점입니다." << endl; }
};

int main() {
	ColorPoint zeroPoint;
	zeroPoint.show();

	ColorPoint cp(5, 5);
	cp.setPoint(10, 20);
	cp.setColor("BLUE");
	cp.show();
}

 

 

4. 설명

 

 매개변수가 없는 ColorPoint 클래스 변수를 생성하기 위해서는 디폴트 매개변수를 가진 생성자로 작성 합니다.

 

매개변수 없이 선언된 변수 zeroPoint의 결과를 보았을 때 (0, 0) "BLACK" 으로 각각 디폴트 매개변수를 줍니다.

 

 

추가적으로 setPoint, setColor, show 멤버 함수를 작성하여 줍니다.

 

+ Recent posts