1. Overview
In this article, weβll look at a core aspect of the Java language β executing a statement or a group of statements repeatedly using a while loop.
2. While Loop
The while loop is Javaβs most fundamental loop statement. It repeats a statement or a block of statements while its controlling Boolean-expression is true.
The syntax of the while loop is:
while (Boolean-expression)
statement;
The loopβs Boolean-expression is evaluated before the first iteration of the loop β which means that if the condition is evaluated to false, the loop might not run even once.
Letβs have a look at a simple example:
int i = 0;
while (i < 5) {
System.out.println("While loop: i = " + i++);
}
3. Conclusion
In this quick tutorial, we explored Javaβs while loop.
