OnJava8-Examples/containers/ForEachCollections.java
2015-11-03 12:00:44 -08:00

17 lines
410 B
Java

// containers/ForEachCollections.java
// All collections work with for-each.
import java.util.*;
public class ForEachCollections {
public static void main(String[] args) {
Collection<String> cs = new LinkedList<>();
Collections.addAll(cs,
"Take the long way home".split(" "));
for(String s : cs)
System.out.print("'" + s + "' ");
}
}
/* Output:
'Take' 'the' 'long' 'way' 'home'
*/