Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
733 views
in Technique[技术] by (71.8m points)

c++ - Why can copy elision not optimise all copy operations?

I read about copy elision and how it can fasten up Programms by giving possibilities to write code more straight foreword without thinking about references of variables. In a small example I tried to find the limits of this technique.

#include <iostream>

class A
{
public:
   A(){}
   A(const A &a) {std::cout << "Copy" << std::endl;}
};

A foo(A a)
{
   return a;
}

int main(void)
{
   A a = foo(foo(A()));
   std::cout << std::endl;
   A b;
   b = foo(foo(b));

   return 0;
}

https://godbolt.org/z/xo88jq

Output:

Copy
Copy

Copy
Copy
Copy

The compiler already elides many of the copies in this example. But why is the compiler not able to elide all those copies leading to a or in the modification of b?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...