The Java™ Tutorials: Documentation
The Java™ Tutorials: Documentation
The Java™ Tutorials
Trail: Learning the Java Language
Lesson: Language Basics
Section: Control Flow Statements
The while and dowhile Statements
The while statement continually executes a block of statements while a particular condition is true. Its syntax can be expressed as:
while (expression) {
statement(s)
}
The while statement evaluates expression, which must return a boolean value. If the expression evaluates to true, the while statement
executes the statement(s) in the while block. The while statement continues testing the expression and executing its block until the expression
evaluates to false. Using the while statement to print the values from 1 through 10 can be accomplished as in the following WhileDemo program:
class WhileDemo {
public static void main(String[] args){
int count = 1;
while (count < 11) {
System.out.println("Count is: " + count);
count++;
}
}
}
You can implement an infinite loop using the while statement as follows:
while (true){
// your code goes here
}
The Java programming language also provides a dowhile statement, which can be expressed as follows:
do {
statement(s)
} while (expression);
The difference between dowhile and while is that dowhile evaluates its expression at the bottom of the loop instead of the top. Therefore,
the statements within the do block are always executed at least once, as shown in the following DoWhileDemo program:
class DoWhileDemo {
public static void main(String[] args){
int count = 1;
do {
System.out.println("Count is: " + count);
count++;
} while (count < 11);
}
}
Your use of this page and all the material on pages under "The Java Tutorials" banner is subject to these legal Problems with the examples? Try Compiling and Running the Examples:
notices. FAQs.
Copyright © 1995, 2015 Oracle and/or its affiliates. All rights reserved. Complaints? Compliments? Suggestions? Give us your feedback.
Previous page: The switch Statement
Next page: The for Statement