命名右值引用的类型是什么?

发布于 2024-11-26 17:55:38 字数 454 浏览 2 评论 0原文

考虑下面的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

肤浅与狂妄 2024-12-03 17:55:38

(变量的)x 的类型是int&&。所以decltype(x) 产生int&&。表达式x的类型是int。如果表达式是左值,则 decltype((x)) 生成对表达式类型的左值引用。所以 decltype((x)) 产生 int& 。

The type of x (of the variable) is int&&. So decltype(x) yields int&&. The type of the expression x is int. If the expression is an lvalue, decltype((x)) yields a lvalue reference to the type of the expression. So decltype((x)) yields int&.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文