数组或函数左值可以转换为右值吗?

发布于 2024-12-07 16:50:55 字数 159 浏览 0 评论 0原文

根据 C++ 标准 2003:

An lvalue (3.10) of a non-function, non-array type T can be converted to an rvalue.

数组和函数不能转换为右值是什么意思?

According to C++ Standard 2003:

An lvalue (3.10) of a non-function, non-array type T can be converted to an rvalue.

What does it mean that array and function cannot be converted to rvalue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

柒七 2024-12-14 16:50:55

后面的条款(4.2、4.3)涵盖了函数和数组类型。

“NT 数组”或“T 未知边界数组”类型的左值或右值可以转换为右值
类型为“指向 T 的指针”。结果是指向数组第一个元素的指针。

(...)

函数类型 T 的左值可以转换为“指向 T 的指针”类型的右值。结果是一个指向
函数。

Both function and array types are covered by later clauses (4.2, 4.3).

An lvalue or rvalue of type “array of N T” or “array of unknown bound of T” can be converted to an rvalue
of type “pointer to T.” The result is a pointer to the first element of the array.

(...)

An lvalue of function type T can be converted to an rvalue of type “pointer to T.” The result is a pointer to
the function.

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