循环时

int i = 0;
while (i < 100) { // condition gets checked BEFORE the loop body executes
    System.out.println(i);
    i++;
}

只要括号内的条件为 truewhile 循环就会运行。这也称为预测试循环结构,因为必须在每次执行主循环体之前满足条件语句。

如果循环只包含一个语句,则花括号是可选的,但是某些编码样式约定更喜欢使用大括号。