Java / Control Statements
What types of loops does Java support?
Java offers three different types of loops: for, while, and do-while.
A for loop iterates over a range of values. It is useful when we know in advance how many times a task is going to be repeated.
for (int i = 0; i < 10; i++) { // perform some action }
Java also supports enhanced for loop to iterate over collection.
for (Employee emp:employeeList){ {
A while loop can execute a block of statements while a particular condition is true.
while (i<10) { // ... }
A do-while is a variation of while statement in which the evaluation of the boolean expression is at the bottom of the loop. This guarantees that the code will execute at least once.
More Related questions...