右值引用是否允许隐式转换?

时间:2010-06-26 13:54:03

标签: c++ type-conversion c++11 temporary rvalue-reference

以下代码是否合法?

std::string&& x = "hello world";

g ++ 4.5.0编译此代码没有任何问题。

1 个答案:

答案 0 :(得分:5)

目前在usenet上对此进行了讨论。见Rvalue reference example in 8.5/3 correct or wrong?

这不合法。