Java   View all facts   Glossary   Help
syntactic unit > statement > control flow statement > loop statement > do-while loop
Next loop statementfor loop    Uploop statement    Previous loop statementwhile loop   

do-while loop comparison table
Subject have syntax is a kind of have example
loop statement control flow statement 
do-while loop
for (entry expression; boolean expression; continuation expression) {
//statements to keep executing while boolean expression is true
}
loop statement
int c;
Reader in;
. . .
do {
c = in.read();
. . .
} while (c != -1);

Next loop statementfor loop    Uploop statement    Previous loop statementwhile loop