Let's get started with a Microservice Architecture with Spring Cloud:
Java While Loop
Last updated: February 16, 2025
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.
The code backing this article is available on GitHub. Once you're logged in as a Baeldung Pro Member, start learning and coding on the project.
















