OnJava8-Examples/generics/ListOfInt.java
2015-05-29 14:18:51 -07:00

18 lines
413 B
Java

//: generics/ListOfInt.java
// ©2015 MindView LLC: see Copyright.txt
// Autoboxing compensates for the inability to use
// primitives in generics.
import java.util.*;
public class ListOfInt {
public static void main(String[] args) {
List<Integer> li = new ArrayList<>();
for(int i = 0; i < 5; i++)
li.add(i);
for(int i : li)
System.out.print(i + " ");
}
} /* Output:
0 1 2 3 4
*///:~