- /**
- * collection是一个集合框架中的顶级接口,我可以通过collecttion实例化一个ArrayList类。
- */
- Collection<Integer> c = new ArrayList<Integer>();
- c.add(1);
- c.add(2);
- c.add(8);
- c.add(5);
-
- for (Integer lc : c) {
-
- System.out.println(lc);
- }
-
- }
复制代码- /**
- * collections是一个静态类,里面都是一些操作集合的简单方法。
- * 比如说,排序、折半查找、最大值、最小值等。
- */
- List<Integer> c = new ArrayList<Integer>();
- c.add(1);
- c.add(2);
- c.add(8);
- c.add(5);
-
- Collections.sort(c);
- for (Integer lc : c) {
- System.out.println(lc);
- }
- }
复制代码 |