- 论坛徽章:
- 0
|
为了看看函数返回的局部对象用来初始化另外一个对象时,其地址以及生存期,我简单的写了下面一段code:
- #include <iostream>
- using namespace std;
- class Complex
- {
- public:
- Complex(int i, int j): x(i), y(j)
- {
- cout << "Constructor\t";
- cout << static_cast<void*>(this) << endl;
- }
- Complex(const Complex &c)
- {
- x = c.x;
- y = c.y;
- cout << "Copy Constructor\t";
- cout << &c << endl;
- }
- private:
- int x;
- int y;
- };
- Complex Copy();
- int main(int argc, char *argv[])
- {
- Complex c = Copy();
- return 0;
- }
- Complex Copy()
- {
- Complex c(1, 1);
- return c;
- }
复制代码
输出结果是:Constructor 0xbfcdbd90
我觉得应该调用了一次构造函数,一次拷贝构造函数,不知道为什么只调用了一次构造函数。 |
|