Java/J2EE and SOA (348 Blogs) Become a Certified Professional
AWS Global Infrastructure

Programming & Frameworks

Topics Covered
  • C Programming and Data Structures (16 Blogs)
  • Comprehensive Java Course (4 Blogs)
  • Java/J2EE and SOA (345 Blogs)
  • Spring Framework (8 Blogs)
SEE MORE

What is for-each loop in Java?

Last updated on Nov 27,2019 4K Views

3 / 5 Blog from Control Statements

The for-each loop in Java is generally used for iteration through the array elements in different programming languages. Java 5 introduced this for-each loop, which is also called as an enhanced for-each loop. So, in this article, I’ll help you guys get a proper gist about how for-each loop in Java works.

I’ll be discussing the below topics:

Importance of for-each loop

Using a for-each loop, you can traverse a given array. It starts with the keyword for followed by the condition.

This for statement is a very commonly used looping statement. It includes initialization of an expression that specifies an initial value for an index, and the following condition expression determines whether the loop is continued or not and the last iteration expression allows the index to be modified at the end of each pass. It is known as the for-each loop because it traverses each element one by one. 

Also, it is recommended to use the for-each loop in Java for traversing the elements in the array and collection because it makes the code readable really good.

Now let’s take a look at the syntax of this for-each loop.

Syntax:

for(initialization; condition; iteration){
//body of for-each loop
}

Explanation:

For-each loop in Java - Edureka

  • Declaration starts with the keyword for like a normal for-loop.
  • Instead of initializing a loop counter variable, declare a variable that is of the same type as the base type of the array, followed by a colon, which is then followed by the array name in Java.
  • In the body of the loop, you can use the loop variable you created rather than using an indexed array element.
  • It’s commonly used to iterate over an array or a Collections class.

Now let’s move ahead and take a look at an example.

Example

 class example
{
public static void main(String[] args)
{
int i;
for(i = 1;i<=3; i++)
{
System.out.println("value of i = " +i);
}
} 

Output:

value of i = 1
value of i = 2
value of i = 3

This brings us to the end of this article where we have learned about the for-each loop in Java. Hope you are clear with all that has been shared with you in this tutorial.

If you found this article on “for-each loop in Java” relevant, check out the Edureka Java Certification Training, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. 

We are here to help you with every step on your journey, we come up with a curriculum which is designed for students and professionals who want to be a Java Developer. The course is designed to give you a head start into Java programming and train you for both core and advanced Java concepts along with various Java frameworks like Hibernate & Spring.

If you come across any questions, feel free to ask all your questions in the comments section of “For-each loop in Java” and our team will be glad to answer.

Upcoming Batches For Java Certification Training Course
Course NameDateDetails
Java Certification Training Course

Class Starts on 4th May,2024

4th May

SAT&SUN (Weekend Batch)
View Details
Java Certification Training Course

Class Starts on 25th May,2024

25th May

SAT&SUN (Weekend Batch)
View Details
Comments
0 Comments

Join the discussion

Browse Categories

webinar REGISTER FOR FREE WEBINAR
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

Subscribe to our Newsletter, and get personalized recommendations.

image not found!
image not found!

What is for-each loop in Java?

edureka.co