for keyword in java

The ” for ” keyword specifies a loop which is used to iterate over a range of values, items of an array or a collection In for loop, condition is checked before each iteration and if it returns true then only loop will continue with next iteration.

There are two types of for loop


1) classic/traditional for loop

2) enhanced for loop (for-each)


1) classic/traditional for loop

General Syntax of the classic/traditional for loop is as follows:

  1. for (initialization; terminate condition; increment/decrement) {
  2.             // code
  3. }
for (initialization; terminate condition; increment/decrement) {
            // code
}

where,

initialization: contains code that initializes the loop, usually by declaring a counter variable. This code is executed only once.

terminate condition: contains code that checks for a condition to terminate the loop. This code is executed on every iteration and it should evaluate to true, if the condition is false, the loop is terminated.

increment/decrement: contains code that increments/decrements a value of the counter variable. This code is executed on every iteration.

Example:
  1. for (int i = 1; i <= 100; i++) {
  2.                  System.out.println("Number: " + i);
  3. }
for (int i = 1; i <= 100; i++) {
                 System.out.println("Number: " + i);
}


The above code example iterates over a range of integers from 1 to 100 and output each number to the console.

2) Enhanced for loop


The enhanced for loop (also known as for-each) has been introduced since Java 5.

Its frequently used for iterating over an array or a collection.

General Syntax of the enhanced for loop(also called for-each) is as follows:

  1. for (T var : collection<T> or T[] array) {
  2.  
  3.      // statements
  4.  
  5. }
for (T var : collection<T> or T[] array) {

     // statements

}


where T is the data type of the array or collection, and var is name of the variable refers to the current item in the collection or array.

Example 1

Iterate list of integer numbers using for-each loop as below

  1. for (int number : numbers) {
  2.     System.out.println("Number: " + number);
  3. }
for (int number : numbers) {
    System.out.println("Number: " + number);
}

Example 2

Iterate list of String using for-each loop as below

  1. List<String> hobbies = new ArrayList<String>();
  2.  
  3. hobbies.add("playing cricket");
  4.  
  5. hobbies.add("listening to music");
  6.  
  7. hobbies.add("reading books");
  8.  
  9. System.out.println("Hobbies are ");
  10.  
  11. for (String hobby : hobbies) {
  12.     System.out.println(hobby);
  13. }
List<String> hobbies = new ArrayList<String>();

hobbies.add("playing cricket");

hobbies.add("listening to music");

hobbies.add("reading books");

System.out.println("Hobbies are ");

for (String hobby : hobbies) {
    System.out.println(hobby);
}


About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on