In this tutorial we will learn how to use enhanced for loop in Java.
You might have used enhanced for loop multiple times while coding.
Enhanced for loop provides a simple way to iterate over arrays and collections without using any explicit index.
Basic syntax:
|
|
- Type: Data type of the element in the collection
- variable: Temporary variable to hold element in the collection
- collection: Collection used for iteration
Let us discuss them one by one using examples.
1. Using enhanced for loop over an Array
In the below example ’num’ is variable which stores the current element being iterated in the array ’nums’. Also note there is no index used to iterate through the array.
|
|
2. Using enhanced for loop for string array
Similarly we can use enhanced for loop for string array.
Here ’name’ is the variable which stores the current variable
|
|
3. Using enhanced for loop for list
Below example shows how to use enhanced for loop for list.
For a given list ’names’, ’name’ is the variable which holds the current value during iteration.
|
|
4. Using enhanced for loop for HashMap
In the below example, ’entrySet()’ method retrieves key-value pairs. Each iteration gets one entry(key-value pair).
|
|
5. Using enhanced for loop for iterating over 2D Array
In the below example, outer loop iterated over each row which is a 1D array. Inner loop iterates over elements of the row.
|
|
Conclusion:
We can use enhanced loop to iterate over array or collection sequentially. It enables us to write cleaner and more readable code. It works with arrays,lists,sets and maps.
I hope this tutorial was helpful to you!!!