OnJava8-Examples/containers/ForInCollections.java
2015-11-14 16:18:05 -08:00

18 lines
445 B
Java

// containers/ForInCollections.java
// ©2016 MindView LLC: see Copyright.txt
// All collections work with for-in.
import java.util.*;
public class ForInCollections {
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'
*/