Showing posts with label foreach. Show all posts
Showing posts with label foreach. Show all posts

Thursday, September 17, 2015

How to do foreach in Java

List<String> collection = new ArrayList<String>();

collection.add("Hello");
collection.add("World");

for(String item:collection)
{
System.out.println(item);
}