본문 바로가기

Programming/[C++]

[C++] 복사 소멸자

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
#include <iostream>
using namespace std;
 
class Apple {
    int *p;
public :
    Apple(int i = 0) {
        p = new int;
        *= i;
    }
    
    Apple (const Apple& aa) {
        p = new int;
        p = aa.p;
    }
     
    ~Apple() {
        delete p;
    }
    int getP() {
        return *p;
    }
    
};
 
void main() {
    Apple aa(10);
    Apple bb(aa);
    //Apple bb(aa); //복사생성자 호출
    cout << bb.getP() << endl;
}
cs

 

'Programming > [C++]' 카테고리의 다른 글

[C++] 기초  (0) 2018.03.21
[C++] cout object(씨아웃 오브젝트)  (0) 2018.03.21
[C++] 복사 생성자  (0) 2018.03.21
[C++] 생성자 함수  (0) 2018.03.21
[C++] const에 대해  (0) 2018.03.21