编译时运算符
有人可以列出 C++ 中可用的所有编译时运算符吗?
Could someone please list a all compile time operators in available in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人可以列出 C++ 中可用的所有编译时运算符吗?
Could someone please list a all compile time operators in available in C++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
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.
标准中没有这样的术语。
但这里是所有运算符的列表: 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.