编译时运算符

发布于 2024-10-01 11:22:21 字数 32 浏览 4 评论 0原文

有人可以列出 C++ 中可用的所有编译时运算符吗?

Could someone please list a all compile time operators in available in C++?

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

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

发布评论

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

评论(2

吻泪 2024-10-08 11:22:21

C++ 中有两个运算符,无论操作数如何,它们的结果始终可以在编译时确定,它们是 sizeof[1] 和 ::[ 2]。

当然,其他运算符的许多特殊用途可以在编译时解决,例如整数常量表达式标准中列出的那些。

[1] 与 C++ 不同,C99 具有可变长度数组类型。应用于 VLA 的 sizeof 无法在编译时确定。一些 C++ 编译器提供 VLA 作为扩展。

[2]即可以在编译时确定表达式的结果是什么实体。如果实体是一个对象,那么该对象的值是另一回事。

There are two operators in C++ whose result can always be determined at compile-time, regardless of the operand(s), and those are sizeof[1] and ::[2].

Of course there are plenty of particular uses of other operators that can be resolved at compile-time, for example those listed in the standard for integer constant expressions.

[1] C99, unlike C++, has variable length array types. sizeof applied to a VLA can't be determined at compile-time. Some C++ compilers provide VLAs as an extension.

[2] that is, it can be determined at compile time what entity is the result of the expression. If the entity is an object, then the object's value is another matter.

梦幻的味道 2024-10-08 11:22:21

标准中没有这样的术语。

但这里是所有运算符的列表: http://en.wikipedia.org/wiki/Operators_in_C_and_C %2B%2B(我确信还有其他...)。以一种或另一种方式对它们进行分类应该相当容易。

There is no such term in the standard.

But here's a list of all operators: http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B (I'm sure there are others...). It should be fairly easy to categorise them one way or the other.

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