关于构造函数中调用构造函数的危险

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
#include "iostream"
using namespace std;
 
 
//构造中调用构造是危险的行为
class MyTest
{
public:
    MyTest(int a, int b, int c)
    {
        this->a = a;
        this->b = b;
        this->c = c;
    }
 
    MyTest(int a, int b)
    {
        this->a = a;
        this->b = b;
 
        MyTest(a, b, 100); //直接调用构造函数,产生新的匿名对象
    }
    ~MyTest()
    {
        printf("MyTest~:%d, %d, %d\n", a, b, c);
    }
 
protected:
private:
    int a;
    int b;
    int c;
 
public:
    int getC() const { return c; }
    void setC(int val) { c = val; }
};
 
int main()
{
    MyTest t1(1, 2);
    printf("c:%d", t1.getC()); //请问c的值是?
    system("pause");
    return 0;
}

  

在构造函数中调用构造函数是一个危险的行为

  匿名对象如果没有被承接,会立马析构掉的。

 

posted @   小陈同学啦  阅读(221)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示