Foreach in Java

Advertisements

Prev Tutorial Next Tutorial

Foreach Loop in Java

It is similar to for loop used to retrieve elements of collection objects (until the last element)

Syntax

for(datatype variable:collection-object)
{
.....
.....
}

The above looping statement executed repeatedly several number of time until the elements are available in the collection object, the loop will be terminated if no elements found.

Note: foreach loop always traversing in forward direction.

Example of for...each Loop

import java.util.*;

class ForeachDemo
{
public static void main(String args[])
{  

ArrayList<Integer> al=new ArrayList<Integer>();  // creating arraylist
al.add(10);
al.add(20);
al.add(30);

for(int i : al)
{
System.out.println(i);  
}
}  
}  

Output

10
20
30

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements