这个问题与我之前问过的另一个问题直接相关:“不透明的引用而不是 PImpl。这可能吗?” .
假设我们有一个类,它的引用成员是其他类的成员,该成员在构造函数中初始化为临时变量:
#include <iostream>
struct B
{
B(int new_x = 10) : x(new_x) { std::cout << "B constructed\n"; }
~B() { std::cout << "B destroyed\n"; }
public:
int x;
};
struct A
{
A()
: b( B(23) )
{
std::cout << "A constructed\n";
}
void Foo()
{
std::cout << "A::Foo()\n";
}
~A()
{
std::cout << "A destroyed\n";
}
public:
const B& b;
};
int main()
{
A a;
a.Foo();
cout << "x = " << a.b.x << endl;
}
当我运行上面的代码时,输出是:
B constructed
B destroyed
A constructed
A::Foo()
x = 23
A destroyed
似乎即使临时被破坏所以引用成员应该是无效的,引用成员的整数字段仍然是可读的。为什么它仍然有效?