Another type of loop in Java is a for loop. This is usually used when you know how many times you want the loop to execute. It is often a simple counter-controlled loop to do the loop body a set number of times.
A for-loop combines all 3 parts of writing a loop in one line to initialize, test, and change the loop control variable. The 3 parts are separated by semicolons (;). Each of the three parts of a for loop declaration is optional (initialization, condition, and change), but the semicolons are not optional.
Here is a control flow diagram for a for loop. The code in the initialization area is executed only one time before the loop begins, the test condition is checked each time through the loop and the loop continues as long as the condition is true, and the loop control variable change is done at the end of each execution of the body of the loop, just like a while loop. When the loop condition is false, execution will continue at the next statement after the body of the loop.
Here is a while loop that counts from 5 to 10. Run it and see what it does. Can you change it to a for-loop? Run your for-loop. Does it do the same thing?
Two common patterns in for-loops are to count from 0 up to an number (using <) or count from 1 to the number including the number (using <=). Remember that if you start at 0 use <, and if you start at 1, use <=. The two loops below using these two patterns both run 10 times. The variable i (for index) is often used as a counter in for-loops.
// These loops both run 10 times
// If you start at 0, use <
for(int i = 0; i < 10; i++)
{
System.out.println(i);
}
// If you start at 1, use <=
for(int i = 1; i <= 10; i++)
{
System.out.println(i);
}
for (int i = 3; i < 8; i++)
{
System.out.print(i + " ");
}
3 4 5 6 7 8
This loop starts with i equal to 3 but ends when i is equal to 8.
0 1 2 3 4 5 6 7 8
What is i set to in the initialization area?
8 8 8 8 8
This would be true if the for loop was missing the change part (int i = 3; i < 8; ) but it does increment i in the change part (int i = 3; i < 8; i++).
3 4 5 6 7
The value of i is set to 3 before the loop executes and the loop stops when i is equal to 8. So the last time through the loop i is equal to 7.
The following method has the correct code to print out all the even values from 0 to the value of 10, but the code is mixed up. Drag the blocks from the left into the correct order on the right and indent them correctly. Even though Java doesn’t require indention it is a good habit to get into. You will be told if any of the blocks are in the wrong order or not indented correctly when you click the “Check Me” button.
You can also count backwards in a loop starting from the last number and decrementing down to 0 or 1. All 3 parts of the loop must change to count backwards including the test of when to stop. For example, for (int i=5; i > 0; i–) counts from 5 down to 1.
What do you think will happen when you run the code below? How would it change if you changed line 11 to initialize i’s value to 3? Try the Code Lens button to visualize and trace through this code.
The method printPopSong prints the words to a song. It initializes the value of the variable i equal to 5 and then checks if i is greater than 0. Since 5 is greater than 0, the body of the loop executes. Before the condition is checked again, i is decreased by 1. When the value in i is equal to 0 the loop stops executing.
There are three parts in a for loop header: the initialization, the test condition (a Boolean expression), and an increment or decrement statement to change the loop control variable.
In a for loop, the initialization statement is only executed once before the evaluation of the test Boolean expression. The variable being initialized is referred to as a loop control variable.
In each iteration of a for loop, the increment or decrement statement is executed after the entire loop body is executed and before the Boolean expression is evaluated again.