<small id='rqc2y'></small><noframes id='rqc2y'>

    <legend id='rqc2y'><style id='rqc2y'><dir id='rqc2y'><q id='rqc2y'></q></dir></style></legend><tfoot id='rqc2y'></tfoot>
      <i id='rqc2y'><tr id='rqc2y'><dt id='rqc2y'><q id='rqc2y'><span id='rqc2y'><b id='rqc2y'><form id='rqc2y'><ins id='rqc2y'></ins><ul id='rqc2y'></ul><sub id='rqc2y'></sub></form><legend id='rqc2y'></legend><bdo id='rqc2y'><pre id='rqc2y'><center id='rqc2y'></center></pre></bdo></b><th id='rqc2y'></th></span></q></dt></tr></i><div id='rqc2y'><tfoot id='rqc2y'></tfoot><dl id='rqc2y'><fieldset id='rqc2y'></fieldset></dl></div>

        <bdo id='rqc2y'></bdo><ul id='rqc2y'></ul>

      将大括号包围的块放在需要表达式的位置的 C++ 语法是什么?

      时间:2023-08-26
      <legend id='gZP2a'><style id='gZP2a'><dir id='gZP2a'><q id='gZP2a'></q></dir></style></legend>

        <small id='gZP2a'></small><noframes id='gZP2a'>

          • <bdo id='gZP2a'></bdo><ul id='gZP2a'></ul>
            <tfoot id='gZP2a'></tfoot>
          • <i id='gZP2a'><tr id='gZP2a'><dt id='gZP2a'><q id='gZP2a'><span id='gZP2a'><b id='gZP2a'><form id='gZP2a'><ins id='gZP2a'></ins><ul id='gZP2a'></ul><sub id='gZP2a'></sub></form><legend id='gZP2a'></legend><bdo id='gZP2a'><pre id='gZP2a'><center id='gZP2a'></center></pre></bdo></b><th id='gZP2a'></th></span></q></dt></tr></i><div id='gZP2a'><tfoot id='gZP2a'></tfoot><dl id='gZP2a'><fieldset id='gZP2a'></fieldset></dl></div>
                <tbody id='gZP2a'></tbody>

              1. 本文介绍了将大括号包围的块放在需要表达式的位置的 C++ 语法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我遇到了这个奇怪的 C++ 程序.

                #include 使用命名空间标准;int main(){int a = ({int x; cin >> x; x;});cout<<一个;}

                谁能解释一下这是怎么回事?这个结构叫什么?

                解决方案

                它将用户输入值分配给 a 并打印出来.它是通过使用Statement Expression 来完成的.

                语句表达式是 gnu gcc 编译器扩展 不受 C/C++ 标准支持.因此,任何使用语句表达式的代码都是不符合标准且不可移植的.

                IBM IBM XL C/C++ v7.0 也支持 Statement Expressions &它的文档恰当地解释了它们:

                语句表达:

                <块引用>

                复合语句是用大括号括起来的一系列语句.在 GNU C 中,括号内的复合语句可能作为表达式出现在所谓的 Statement expression 中.

                 .--------------.V |>>-(--{----statement--;-+--}--)--------------------------------><

                <块引用>

                语句表达式的值是出现在整个构造中的最后一个简单表达式的值.如果最后一条语句不是表达式,则构造的类型为 void 并且没有值.

                始终通过在 GCC 中选择标准来编译您的代码,使用选项 -ansi-std=c90-std=iso9899:1990 之一, -std=c++03, -std=c++0x;要获得标准要求的所有诊断信息,您还应该指定 -pedantic(或 -pedantic-errors,如果您希望它们是错误而不是警告)

                I came across this weird C++ program.

                #include <iostream>
                using namespace std;
                int main()
                {
                  int a = ({int x; cin >> x; x;});
                  cout << a;
                }
                

                Can anyone explain what is going on? What is this construct called?

                解决方案

                It assigns user input value to a and prints it out. it is done by using a Statement Expression.

                Statement Expressions are gnu gcc compiler extension are not supported by the C/C++ standards. Hence any code which uses statement expression is non standard conforming and non portable.

                The IBM IBM XL C/C++ v7.0 also support Statement Expressions & it's doccumentation explains them aptly:

                Statement Expressions:

                A compound statement is a sequence of statements enclosed by braces. In GNU C, a compound statement inside parentheses may appear as an expression in what is called a Statement expression.

                         .--------------.
                         V              |
                >>-(--{----statement--;-+--}--)--------------------------------><
                

                The value of a statement expression is the value of the last simple expression to appear in the entire construct. If the last statement is not an expression, then the construct is of type void and has no value.

                Always compile your code by selecting a sandard in GCC, use one of the options -ansi, -std=c90 or -std=iso9899:1990, -std=c++03, -std=c++0x; to obtain all the diagnostics required by the standard, you should also specify -pedantic (or -pedantic-errors if you want them to be errors rather than warnings)

                这篇关于将大括号包围的块放在需要表达式的位置的 C++ 语法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:'&' 是什么意思在 C++ 声明中做什么? 下一篇:与参数组合的各种符号(*、&amp;等)有什么区别?

                相关文章

                  <tfoot id='rhBoY'></tfoot>
                  1. <i id='rhBoY'><tr id='rhBoY'><dt id='rhBoY'><q id='rhBoY'><span id='rhBoY'><b id='rhBoY'><form id='rhBoY'><ins id='rhBoY'></ins><ul id='rhBoY'></ul><sub id='rhBoY'></sub></form><legend id='rhBoY'></legend><bdo id='rhBoY'><pre id='rhBoY'><center id='rhBoY'></center></pre></bdo></b><th id='rhBoY'></th></span></q></dt></tr></i><div id='rhBoY'><tfoot id='rhBoY'></tfoot><dl id='rhBoY'><fieldset id='rhBoY'></fieldset></dl></div>

                      <bdo id='rhBoY'></bdo><ul id='rhBoY'></ul>

                  2. <legend id='rhBoY'><style id='rhBoY'><dir id='rhBoY'><q id='rhBoY'></q></dir></style></legend>

                    <small id='rhBoY'></small><noframes id='rhBoY'>