일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- #2차원배열
- #3차원배열
- #C++ 연산자함수오버로딩
- git flow
- html plug-in
- html5 new tag
- html object
- docker example
- html code
- 토큰경제
- #C++ has~a
- #CallByAddress
- hyperledger transaction
- html charset
- border-box
- #1차원배열
- mac terminal command
- #android activity
- #JAVASCRIPT
- #자바상속#자바이즈어#is~a
- html youtube
- #다차원포인터
- #성적관리프로그램
- html id
- #bubbleSort
- 하이퍼레저패브릭
- #binary
- relative path
- html video
- html multimedia
Archives
- Today
- Total
A sentimental robot
Has~A 본문
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 |
#include<iostream>
#include<string>
using namespace std;
class A {
string name;
public:
A(string name) {
cout << "A ()" << endl;
this->name = name;
}
void setName(string name)
{
this->name = name;
}
string getName()const
{
return name;
}
};
class B {
A aa; // has~a
int age;
public:
B(string name, int age) :aa(name) { // 콜론초기화; B생성자 동작 전에 A생성자로 먼저 가기 때문에
cout << "B ()" << endl;
// this->aa.setName(name);
this->age = age;
}
void setAge(int age)
{
this->age = age;
}
int getAge()const {
return age;
}
void setName(string name) {
aa.setName(name);
}
string getName() const {
return aa.getName();
}
};
int main() {
B bb("superman", 900); // B 생성시 생성자 동작전에
//bb안의 A객체 인식하고 A 생성자로 감
cout << bb.getName();
} |
cs |
'C++ ' 카테고리의 다른 글
Friend (0) | 2018.09.19 |
---|---|
Has~a exercise (0) | 2018.09.18 |
const (0) | 2018.09.17 |
복사생성자 (0) | 2018.09.17 |
C++ passing reference to pointer (0) | 2018.09.12 |