일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- beans
- array
- meta
- function
- windows
- 자료구조
- jsp
- 악성코드
- OOP
- JavaScript
- c++
- C
- 노드
- API
- UTF-8
- request
- query
- 윈도우즈
- algorithm
- java
- CLASS
- Kafka
- Call-by-reference
- 포인터
- Sort
- System
- CSS
- 투자
- HTML
- WebProgramming
- Today
- Total
hahahia
C++ 포함 본문
사실 포함을 설명하는 이유는 다음에 이어갈 상속과 관련해서 볼 때 도움이 될꺼같아서 이렇게 포스팅을 합니다....
객체가 다른 객체를 멤버변수로 사용하고 있는 것을 포함 이라고 합니다
/*
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 |