msvc 是否有 gcc 的类似物 ({ })
msvc 是否有 gcc 的类似 ({ })。
我认为答案是否定的。
请注意,这是编译器功能的问题,而不是品味或风格的问题。
我并不是建议任何人开始使用这个问题的 ({}) 结构。
对 ({}) 构造的引用为: http://gcc .gnu.org/onlinedocs/gcc-2.95.3/gcc_4.html#SEC62 正式名称为“表达式中的语句和声明”。它允许将语句(如 for、goto)和声明嵌入到表达式中。
Does msvc have analog of gcc's ({ }).
I assume the answer is no.
Plase note that this is question of compiler capabilities, not question of taste or style.
Not that I recommend anybody to start using the ({}) construct by ths question.
The reference to ({}) construct is: http://gcc.gnu.org/onlinedocs/gcc-2.95.3/gcc_4.html#SEC62 officially called "Statements and Declarations in Expressions". It allows to embed statements (like for, goto) and declarations into expressions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在某种程度上,是的。这是一个复合语句表达式,可以将其视为 lambda 函数立即调用,并且只调用一次。
MSVC 的最新版本应该支持 lambda 函数,因此类似于:
编辑:删除了多余的括号
编辑 2:为了您的娱乐,这里是一个如何将任一变体与一些(诚然完全愚蠢的)真实代码一起使用的示例。不要太在意代码的实际用处,而是它的表现力如何以及编译器甚至如何优化它:
... gcc 4.5 编译为:
In some way, yes. This is a compound statement expression, which one could consider like a lambda function that is immediately called, and only called once.
Recent versions of MSVC should support lambda functions, so that would be something like:
EDIT: removed a surplus parenthesis
EDIT 2: For your amusement, here is an example of how to use either variation with some (admittedly totally silly) real code. Don't mind too much the actual usefulness of the code, but how expressive it is and how nicely the compiler even optimizes it:
... which gcc 4.5 compiles to:
不,它不包含等效形式。
No, it does not contain an equivalent form.