(String[] args)
| 6 | |
| 7 | public class SimpleCollection { |
| 8 | public static void main(String[] args) { |
| 9 | Collection<Integer> c = new ArrayList<>(); |
| 10 | for(int i = 0; i < 10; i++) |
| 11 | c.add(i); // Autoboxing |
| 12 | for(Integer i : c) |
| 13 | System.out.print(i + ", "); |
| 14 | } |
| 15 | } |
| 16 | /* Output: |
| 17 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, |