Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why is it that when the g_Fun() executes to the return temp it will call the copy constructor?

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;
}
share|improve this question

2 Answers

Because you return by value, but note that calling the copy constructor is not required, because of RVO.

Depending on the optimization level, the copy-ctor might or might not be called - don't rely on either.

share|improve this answer
That, and the expression g_Fun() still has a return value, even though the statement doesn't use it at all. – aschepler Jan 24 at 19:50
yes, but it is used as: CExample var = g_Fun(); – user707549 Jan 24 at 19:56
@ratzip all the more reason - that's copy initialization. Same rule applies (copy c-ctor can be called, but not required to) – Luchian Grigore Jan 24 at 19:57
In C++11 g_Fun() is guaranteed not to copy but to move instead. – rhalbersma Jan 24 at 20:04

A copy constructor may called whenever we return an object (not its reference) because its copy needed to be created which is done by default copy constructor.

CExample g_Fun()
{
 return CExample(0);    //to avoid the copy constructor call
 }
share|improve this answer
1  
-1 the book is a lie. It can make no such guarantee. – Luchian Grigore Jan 24 at 19:49
ya agree with you completely. from last few days the stack overflow changes my mind about copy constructor. the book is informit.com/store/… – Arpit Jan 24 at 19:50
Then correct the answer. :) – Luchian Grigore Jan 24 at 19:52
It's still not correct. The copy constructor can be called, it doesn't have to. – Luchian Grigore Jan 24 at 19:54
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.