Java Do/While 循环
Do/While 循环
do/while
循环是 while
循环的一种变体。此循环将在检查条件是否为真之前执行一次代码块,然后只要条件为真,它就会重复循环。
语法
do {
// code block to be executed
}
while (condition);
以下示例使用 do/while
循环。即使条件为假,循环也将至少执行一次,因为代码块在测试条件之前执行。
不要忘记增加条件中使用的变量,否则循环将永远不会结束!
do/while
循环是 while
循环的一种变体。此循环将在检查条件是否为真之前执行一次代码块,然后只要条件为真,它就会重复循环。
do {
// code block to be executed
}
while (condition);
以下示例使用 do/while
循环。即使条件为假,循环也将至少执行一次,因为代码块在测试条件之前执行。
不要忘记增加条件中使用的变量,否则循环将永远不会结束!
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]