Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Copy Elision Misunderstanding

#include <iostream>

struct A
{
    A() { std::cout << "Def Constr\n"; }

    A(const A&) { std::cout << "Copy Constr\n"; }
};

A func1() 
{
    return A{};
}

void func2(A a) {}

int main()
{
    func2(func1());
}

After compiling with

g++ Copy.cpp -std=c++11 -fno-elide-constructors

Output is :

Def Constr

Copy Constr

Copy Constr

And my questions is : Why 2 Copy Constr ? I thought only 1 Copy was needed.

I might have a guess that func1() throws a temp object and this temp object needs to be copied to another memory region and from that region again a copy must be made for the func2() parameter but it's vague for me .

Could you explain it in detail please ?

like image 467
Oleg Avatar asked Mar 06 '15 12:03

Oleg


1 Answers

  1. The return value of func1 is copied from the expression A{}.
  2. The value of the function call expression func1() is copied into the function parameter of func2.
like image 73
Kerrek SB Avatar answered Sep 23 '22 15:09

Kerrek SB