3

为什么当g_Fun()执行到时return temp它会调用复制构造函数?

class CExample 
{
private:
 int a;

public:
 CExample(int b)
 { 
  a = b;
 }

 CExample(const CExample& C)
 {
  a = C.a;
  cout<<"copy"<<endl;
 }

     void Show ()
     {
         cout<<a<<endl;
     }
};

CExample g_Fun()
{
 CExample temp(0);
 return temp;
}

int main()
{
 g_Fun();
 return 0;
}
4

2 回答 2

7

因为您按值返回,但请注意,由于RVO,不需要调用复制构造函数。

根据优化级别,可能会或可能不会调用 copy-ctor - 不要依赖任何一个。

于 2013-01-24T19:45:58.280 回答
0

每当我们返回一个对象(而不是它的引用)时,可能会调用一个复制构造函数,因为需要创建它的副本,这是由默认的复制构造函数完成的。

CExample g_Fun()
{
 return CExample(0);    //to avoid the copy constructor call
 }
于 2013-01-24T19:48:13.783 回答