fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class X {
  5. public:
  6. X() { cout<<" ctor "<<this<<endl; }
  7. X(const X&) { cout<<" cpyctor "<<this<<endl; }
  8. X operator+ (X&&) {
  9. cout<<" in +"<<endl;
  10. return X();
  11. }
  12. ~X() { cout<<" dtor "<<this<<endl; }
  13. X& me() { cout<<" yes!"<<endl;return *this; }
  14. };
  15.  
  16. X f() {
  17. cout<<" in f"<<endl;
  18. return X(); }
  19. X& g(X&x) {
  20. cout<<" in g"<<endl;
  21. return x;
  22. }
  23.  
  24. int main() {
  25. cout << "case1 - completely safe: "<<endl;
  26. g(f().me().me().me()).me();
  27. cout << "end case1."<<endl<<endl;
  28.  
  29. cout << "case2 - hoping for life extension but UB: "<<endl;
  30. {
  31. X x;
  32. {
  33. X& myriskyref = (x + f()).me(); // ouch!!! the temporary was created by operator/function return
  34. // so no life extension accrdong to 12.2/5
  35. cout <<&myriskyref.me() <<endl;
  36. } // permanent ref vanisches;
  37. }
  38. cout << "end case2."<<endl<<endl;
  39. cout<< "case 3:" <<endl;
  40. {
  41. const X donottouch;
  42. //donottouch.me(); would be compilation error
  43. }
  44. cout << "end case 3."<<endl;
  45.  
  46. return 0;
  47. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
case1 - completely safe: 
               in f
  ctor 0x7ffcb6e43e87
    yes!
    yes!
    yes!
               in g
    yes!
  dtor 0x7ffcb6e43e87
end case1.

case2 - hoping for life extension but UB: 
  ctor 0x7ffcb6e43e85
               in f
  ctor 0x7ffcb6e43e87
               in +
  ctor 0x7ffcb6e43e86
    yes!
  dtor 0x7ffcb6e43e86
  dtor 0x7ffcb6e43e87
    yes!
0x7ffcb6e43e86
  dtor 0x7ffcb6e43e85
end case2.

case 3:
  ctor 0x7ffcb6e43e87
  dtor 0x7ffcb6e43e87
end case 3.