is a 관계
- public으로 상속되는 관계(기본클래스, 파생클래스)라고 볼 수 있다. - 예) Point와 Circle의 관계(Circle is a Point(0), Point is a Circle(X)) /*27.cpp*/ #include using std::endl; using std::cout; class Point { int x_ptr; int y_ptr; public: Point(int _x = 0, int _y = 0){ x_ptr = _x; y_ptr = _y; } void getPoint(){ cout
C++/상속
2008. 5. 5. 14:01