一稽揭、學(xué)習(xí)要求
書籍參考章節(jié): 第3.8章
知識(shí)點(diǎn):
- do...while循環(huán)的用法
二裆悄、參考知識(shí)
對(duì)于 while 語句而言党巾,如果不滿足條件萎庭,則不能進(jìn)入循環(huán)。但有時(shí)候我們需要即使不滿足條件齿拂,也至少執(zhí)行一次驳规。do…while 循環(huán)和 while 循環(huán)相似,不同的是署海,do…while 循環(huán)至少會(huì)執(zhí)行一次吗购。
語法
do {
//代碼語句
}while(布爾表達(dá)式);
注意:布爾表達(dá)式在循環(huán)體的后面,所以語句塊在檢測(cè)布爾表達(dá)式之前已經(jīng)執(zhí)行了砸狞。 如果布爾表達(dá)式的值為 true捻勉,則語句塊一直執(zhí)行,直到布爾表達(dá)式的值為 false刀森。
實(shí)例
舉例如下:
public class Test {
public static void main(String args[]){
int x = 10;
do{
System.out.print("value of x : " + x );
x++;
System.out.print("\n");
}while( x < 20 );
}
}
以上實(shí)例編譯運(yùn)行結(jié)果如下:
value of x : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19