У меня есть TestClass
с переменной-членом const&
. Я знаю из разных мест и из собственного опыта, что это плохая идея инициализировать этот const&
со ссылкой на временное значение. Поэтому я был очень удивлен, что следующий код будет хорошо скомпилирован (протестирован с gcc-4.9.1
, clang-3.5
и scan-build-3.5
), но не сможет работать должным образом.
class TestClass {
public:
// removing the "reference" would remove the temporary-problem
const std::string &d;
TestClass(const std::string &d)
: d(d) {
// "d" is a const-ref, cannot be changed at all... if it is assigned some
// temporary value it is mangled up...
}
};
int main() {
// NOTE: the variable "d" is a
// temporary, whose reference is not valid... what I don't get in the
// moment: why does no compiler warn me?
TestClass dut("d");
// and printing what we got:
std::cout << "beginning output:\n\n";
// this will silently abort the program (gcc-4.9.1) or be empty
// (clang-3.5) -- don't know whats going on here...
std::cout << "dut.d: '" << dut.d << "'\n";
std::cout << "\nthats it!\n";
return 0;
}
Почему ни один из двух компиляторов не предупреждает меня во время компиляции? См. также этот ideone, и еще несколько тестирований.