命名右值引用的类型是什么?
考虑下面的代码:
int&& x = 42;
static_assert(std::is_same<decltype( x ), int&&>::value, "&&");
static_assert(std::is_same<decltype((x)), int& >::value, "&" );
那么,x
的类型是什么?它是 int&&
还是 int&
?
(在阅读这个答案后,我问自己这个问题。)
Consider the following code:
int&& x = 42;
static_assert(std::is_same<decltype( x ), int&&>::value, "&&");
static_assert(std::is_same<decltype((x)), int& >::value, "&" );
So, what is the type of x
? Is it an int&&
or an int&
?
(I asked myself this question after reading this answer.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(变量的)
x
的类型是int&&
。所以decltype(x)
产生int&&
。表达式x
的类型是int
。如果表达式是左值,则 decltype((x)) 生成对表达式类型的左值引用。所以 decltype((x)) 产生 int& 。The type of
x
(of the variable) isint&&
. Sodecltype(x)
yieldsint&&
. The type of the expressionx
isint
. If the expression is an lvalue,decltype((x))
yields a lvalue reference to the type of the expression. Sodecltype((x))
yieldsint&
.