break statement

来自cppreference.com
< c‎ | language

的循环或
switch语句
原文:
switch statement
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
终止.
时使用的终止条件表达式和条件语句的循环使用,否则尴尬.....
原文:
Used when it is otherwise awkward to terminate the loop using the condition expression and conditional statements.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 语法

break

[编辑] 解释

这句话后,控制权转让的声明后立即封闭循环。所有自动存储对象中声明的封闭循环被破坏前的封闭循环之后的第一行的执行.
原文:
After this statement the control is transferred to the statement immediately following the enclosing loop. All automatic storage objects declared in enclosing loop are destroyed before the execution of the first line following the enclosing loop.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 关键字

break

[编辑] 示例