文档

Java™ 教程-Java Tutorials 中文版
控制流语句总结
Trail: Learning the Java Language
Lesson: Language Basics
Section: Control Flow Statements

控制流语句总结

if-then 语句是所有控制流程语句中最基本的。它告诉程序只在特定的测试结果为 true 时才会执行某段代码。当 "if" 子句计算为 false 时,if-then-else 语句提供执行的辅助路径。与 if-thenif-then-else 不同,switch 语句允许任意数量的可能执行路径。whiledo-while 语句在特定条件为 true 时连续执行一段语句。do-whilewhile 之间的区别在于 do-while 在循环底部而不是顶部计算其表达式。因此,do 块中的语句总是至少执行一次。for 语句提供了一种紧凑的方式来遍历一系列值。它有两种形式,其中一种是为循环集合和数组而设计的。


Previous page: Branching Statements
Next page: Questions and Exercises: Control Flow Statements