#include<iostream>
using namespace std;
class point
{
public:
point(int xx=0,int yy=0)
{
x=xx;
y=yy;
cout<<"构造函数被调用"<<endl;
}
point(point &p)
{
x=100+p.x;
y=100+p.y;
cout<<"拷贝构造函数被调用"<<endl;
}
int getX()
{
return x;
}
int getY()
{
return y;
}
private:
int x,y;
};
//
point& fun2()
{
static point A(1,2);
return A;
}
void main()
{
point B;
B=fun2();
cout<<B.getX()<<","<<B.getY()<<endl;
cout<<"-------------------"<<endl;
point B1=fun2();
cout<<B1.getX()<<","<<B1.getY()<<endl;
}
程序的运行结果是:
构造函数被调用
构造函数被调用
1,2
-------------------
拷贝构造函数被调用
101,102
为什么第一次不会出101,102呢而是1,2呢 。
其原因是:
如果函数返回值是类对象引用,函数调用完成返回时不调用拷贝构造函数;
那为什么第二次输出101,102呢 那是因为:
point B1=fun2(); 语句相当于point B1=A;调用拷贝构造函数初始化B1。