我认为引用只会将临时对象的生命周期延长到引用本身的生命周期,但以下代码段的输出似乎是矛盾的:
#include <iostream>
struct X{ ~X(){ std::cout << "Goodbye, cruel world!\n"; } };
X const& f(X const& x = X()){
std::cout << "Inside f()\n";
return x;
}
void g(X const& x){
std::cout << "Inside g()\n";
}
int main(){
g(f());
}
活生生的例子。输出:
Inside f()
Inside g()
Goodbye, cruel world!
所以看起来临时在g()
被调用后被破坏了......什么给了?