Skip to content

Commit

Permalink
[hotfix] fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yngwiewang authored Aug 2, 2019
1 parent bc0d11b commit 6b3fcca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/book/05-Control-Flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class TrueFalse {
true false
```

通过上一章的学习,我们知道任何关系运算符都可以产生条件语句。 **注意**:在 Java 中使用数值作为布尔值是非法的,即便这种操作在 C/C++ 中是被允许的(在这些语言中,“真”为非零,而“假”是零)。如果想在布尔测试中使用一个非布尔值,那么首先需要使用条件表达式来产生 **boolean** 类型的结果,例如 `if(a! = 0)`
通过上一章的学习,我们知道任何关系运算符都可以产生条件语句。 **注意**:在 Java 中使用数值作为布尔值是非法的,即便这种操作在 C/C++ 中是被允许的(在这些语言中,“真”为非零,而“假”是零)。如果想在布尔测试中使用一个非布尔值,那么首先需要使用条件表达式来产生 **boolean** 类型的结果,例如 `if(a != 0)`

## if-else

Expand Down

0 comments on commit 6b3fcca

Please sign in to comment.