Collection 是集合类的上级接口,继承与他有关的接口主要有List和Set
    Collections 是针对集合类的一个帮助类,他提供一系列静态方法实现对各种集合的搜索、排序、线程安全等操作
    稍微举个例子:
    java代码
    public static void main(String args[]) {
    //注意List是实现Collection接口的
    List list = new ArrayList();
    double array[] = { 112, 111, 23, 456, 231 };
    for (int i = 0; i < array.length; i++) {
    list.add(new Double(array[i]));
    }
    Collections.sort(list); //把list按从小到大排序
    for (int i = 0; i < array.length; i++) {
    System.out.println(list.get(i));
    }
    // 结果:23.0 111.0 112.0 231.0 456.0
    }