🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to Java Notes
Topic #49

For-Each Loop


The for-each Loop

There is also a "for-each" loop, which is used exclusively to loop through elements in an array (or other data structures):

Syntax

for (type variableName : arrayName) {
  // code block to be executed
}

The for-each loop is simpler and more readable than a regular for loop, since you don't need a counter (like i < array.length).

The following example prints all elements in the cars array:

Example

String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};

for (String car : cars) {
  System.out.println(car);
}

Here is a similar example with numbers. We create an array of integers and use a for-each loop to print each value:

Example

int[] numbers = {10, 20, 30, 40};

for (int num : numbers) {
  System.out.println(num);
}

Note: Don't worry if you don't fully understand arrays yet. You will learn more about them in the Java Arrays chapter.

Want to go beyond the notes?

Join CodingNow 2.0's Java course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

For-Each Loop – FAQs

Quick answers about learning For-Each Loop in Java.

This free note from CodingNow 2.0 explains For-Each Loop in Java — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every Java topic on CodingNow 2.0, including For-Each Loop, is 100% free with no signup required.
With focused practice, most students grasp For-Each Loop in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now