Foreach in C++ and Java
Foreach loop is used to access elements of an array quickly without performing initialization, testing and increment/decrement. The working of foreach loops is to do something for every element rather than doing something n times.
There is no foreach loop in C, but both C++ and Java have support for foreach type of loop. In C++, it was introduced in C++ 11 and Java in JDK 1.5.0
The keyword used for foreach loop is “for” in both C++ and Java.
C++ Program:
// C++ program to demontrate use of foreach #include <iostream> using namespace std; int main() { int arr[] = { 10, 20, 30, 40 }; // Printing elements of an array using // foreach loop for (int x : arr) cout << x << endl; } |
10 20 30 40
Java program
// Java program to demonstrate use of foreach public class Main { public static void main(String[] args) { // Declaring 1-D array with size 4 int arr[] = { 10, 20, 30, 40 }; // Printing elements of an array using // foreach loop for (int x : arr) System.out.println(x); } } |
10 20 30 40
Advantages of Foreach loop:-
1) Makes code more readable.
2) Eliminates the possibility of programming errors.
This article is contributed by Rahul Agrawal. If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Recommended Posts:
- Iterator vs Foreach In Java
- Vector forEach() method in Java
- DoubleStream forEach() method in Java
- LongStream forEach() method in Java
- IntStream forEach() method in Java
- ArrayList forEach() method in Java
- ArrayDeque forEach() method in Java
- LinkedTransferQueue forEach() method in Java with Examples
- CopyOnWriteArrayList forEach() method in Java with Examples
- LinkedBlockingDeque forEach() method in Java with Examples
- HashTable forEach() method in Java with Examples
- Flatten a Stream of Map in Java using forEach loop
- CopyOnWriteArraySet forEach() method in Java with Examples
- Iterable forEach() method in Java with Examples
- Stream forEach() method in Java with examples



