hahahia

C++ 포함 본문

Language/C++

C++ 포함

hahahia 2012. 9. 1. 01:20

사실 포함을 설명하는 이유는 다음에 이어갈 상속과 관련해서 볼 때 도움이 될꺼같아서 이렇게 포스팅을 합니다....

객체가 다른 객체를 멤버변수로 사용하고 있는 것을 포함 이라고 합니다

/*

Class 포함 예제

made by hahahia

*/

 

#include<iostream>

 

using namespace std;

 

class point{ /* x,y 좌표를 나타내는 간단한 클래스 */

private:

    int x,y;

public:

    point(int _x,int _y): x(_x),y(_y) {}; /* C++ Style(= {x = _x; y = _y;} */

    int getX() const { return x; }

    int getY() const { return y; }

};

class rectangle{ // rectangle class(사실 클래스도 간단하네요....ㅎㅎ)

private:

    point topLeft;

    point bottomRight; //point 객체를 포함

public:

    rectangle(int a, int b, int c, int d) : topLeft(a,b), bottomRight(c,d){};

    void print(){

               cout << "Top Left : (" << topLeft.getX() << ", " << topLeft.getY() << ")\n";

               cout << "Bottom Right : (" << bottomRight.getX() << ", " << bottomRight.getY() << ")\n";

        }

};

 

int main(){

    rectangle myRec(1,2,3,4);

    myRec.print();

    return 0;

}


실행결과


 

'Language > C++' 카테고리의 다른 글

Template Function(템플릿 함수)  (0) 2012.09.01
C++ 상속(inheritance)  (0) 2012.09.01
Operator Overloading(연산자 오버로딩)  (0) 2012.09.01
1주차  (0) 2011.06.27
Class GradeBook Using an Array to Store Grades  (0) 2011.05.25
Comments