if statement
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
有条件地执行代码
只有在一定条件下是存在的,需要执行其中的代码使用.
原文:
Used where code needs to be executed only if some condition is present.
目录 |
[编辑] 语法
if ( expression ) statement_true
|
|||||||||
if ( expression ) statement_true else statement_false
|
|||||||||
[编辑] 解释
expression是一个表达式,转换为bool.
原文:
expression shall be an expression, convertible to bool.
如果计算结果为true,控制被传递到statement_true,statement_false(如果有的话)不执行.
原文:
If it evaluates to true, control is passed to statement_true, statement_false (if present) is not executed.
否则,控制传递到statement_falsestatement_true还没有执行.
原文:
Otherwise, control is passed to statement_false, statement_true is not executed.
[编辑] 关键字
[编辑] 示例
下面的例子演示了几种在某些情况下,
if
声明
原文:
The following example demonstrates several usage cases of the
if
statement
输出:
first is false i == 3 i != 3 is false