- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java For-each Loop (Enhanced For Loop)
In Java, the for-each loop, also known as the enhanced for loop, simplifies iteration over elements of arrays or collections. Here's a concise overview:
Syntax:
for (dataType element : arrayOrCollection) {
// Code to execute for each element
}
dataType:
- Specifies the data type of elements in the array or collection.
element:
- Represents the variable that holds the current element value in each iteration.
arrayOrCollection:
- Represents the array or collection over which iteration occurs.
For-each Loop Example:
- Iterates over elements of an array.
- Example:
int[] numbers = {1, 2, 3, 4, 5};
for (int num : numbers) {
System.out.println(num);
}
Enhanced For Loop with Collections:
- Iterates over elements of a collection.
- Example:
List<String> names = new ArrayList<>();
names.add("Alice");
names.add("Bob");
names.add("Charlie");
for (String name : names) {
System.out.println(name);
}
Summary
The for-each loop provides a concise and readable way to iterate over arrays or collections in Java, reducing the need for explicit indexing and making code more expressive. Understanding how to use the enhanced for loop is essential for efficient iteration in Java programs.