The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
SeeDev.java for updated tutorials taking advantage of the latest releases.
SeeJava Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
SeeJDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.
Thewhile
statement continually executes a block of statements while a particular condition istrue
. Its syntax can be expressed as:
while (expression) { statement(s)}
Thewhile
statement evaluatesexpression, which must return aboolean
value. If the expression evaluates totrue
, thewhile
statement executes thestatement(s) in thewhile
block. Thewhile
statement continues testing the expression and executing its block until the expression evaluates tofalse
. Using thewhile
statement to print the values from 1 through 10 can be accomplished as in the followingWhileDemo
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 thewhile
statement as follows:
while (true){ // your code goes here}
The Java programming language also provides ado-while
statement, which can be expressed as follows:
do { statement(s)} while (expression);
The difference betweendo-while
andwhile
is thatdo-while
evaluates its expression at the bottom of the loop instead of the top. Therefore, the statements within thedo
block are always executed at least once, as shown in the followingDoWhileDemo
program:
class DoWhileDemo { public static void main(String[] args){ int count = 1; do { System.out.println("Count is: " + count); count++; } while (count < 11); }}
About Oracle |Contact Us |Legal Notices |Terms of Use |Your Privacy Rights
Copyright © 1995, 2024 Oracle and/or its affiliates. All rights reserved.