A sentimental robot

대입연산자 본문

C++

대입연산자

GOD03219 2018. 9. 19. 14:37

대입연산자도 복사생성자와 마찬가지로 얉은 대입과 깊은 대입이 있다.

 

1. 얉은 대입 연산자 함수 (디폴트 대입연산자 함수)

 

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
#include <iostream>
using namespace std;
 
class A {
    int a;
 
public:
    A(int a = 0) { this->= a; }
    void setA(int a) { this->= a; }
    int getA()const { return a; }
 

    A& operator = (const A &t) { // call by reference

 

        if (this == &t) return *this// aa = aa; 자기 자신을 대입할때 예외처리, this가 가르키는 주소가 t의 주소와 같을 때

        this->= t.a;
        return *this; // A& = *this 객체를 리턴
    }
 
};
void main() {
 
    A aa(10); // aa.a=10
    A bb; // bb.a=0
    A cc; // cc.a=0
 
    cout << aa.getA() << endl;
    cout << bb.getA() << endl;

 

 
    cc = bb = aa; // 대입연산자함수 호출
                // bb.operator=(aa) 디폴트 대입연산자함수
 
    cout << aa.getA() << endl; // aa.a=10
    cout << bb.getA() << endl;  // bb.a=10
    cout << cc.getA() << endl;  //cc.a=10
 
 
}
cs

 

2. 깊은 대입

데이터(필드)를 포인터로 썼을 경우 디폴트 대입연산자 사용 시 문제 발생

디폴트 대입연산자(얉은 대입연산자)를 썼을 경우 포인터가 가르키는 주소를 옮긴다.

값만 대입하기 위해서 디폴트를 쓰지 않고 깊은 대입연산자를 만들어 준다. 

 

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
#include <iostream>
using namespace std;
 
class A {
    int *a;
 
public:
    A(int a = 0) {
        this->= new int;
        *(this->a) = a;
    }
    ~A() {
        delete a;
 
 
    }
    A(const A&aa) { // 복사 생성자
 
        this->= new int;
        *(this->a) = *(aa.a);
 
 
    }
 
    int getA()const { return *a; }
 
    A& operator = (const A &t) { // 깊은 대입연산자
        
        if (this == &t) return *this
        *(this->a)=*(t.a); // 값을 복사한다.
        return *this;
    }
 
};
void main() {
 
    A aa(10);
    A bb; // bb.a=0
    A cc; // cc.a=0
 
    cout << aa.getA() << endl;
    cout << bb.getA() << endl;
    cout << cc.getA() << endl;
 
    cc = bb = aa;
 
    cout << aa.getA() << endl;
    cout << bb.getA() << endl;
    cout << cc.getA() << endl;
 
 
}
cs

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

연산자함수 오버로딩 예제  (0) 2018.09.21
iostream operator function overloading  (0) 2018.09.20
Operator function  (1) 2018.09.19
Friend  (0) 2018.09.19
Has~a exercise  (0) 2018.09.18