java中Collections有什么用

一个Collections的例子 
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
马克-to-win: 在操纵ArrayList里面的内容时, 通常我们利用Collections。Collections是集合框架中的一个工具类。可用来排序,反转ArrayList里面的内容。




例:1.1.3

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;

public class TestMark_to_win {
    public static void main(String args[]) {
        ArrayList l = new ArrayList();
        l.add("a");
        l.add("c");
        l.add("b");
        l.add("d");
        System.out.println(l + "\n");
        Collections.reverse(l);
        System.out.println(l + "\n");
        Collections.sort(l);
        System.out.println(l + "\n");
        Iterator it = l.iterator();
        String lll = "";
        while (it.hasNext()) {
            String kk = (String) it.next();
            lll = lll + kk;
            // if (kk.equals("jkc")) System.out.println("has jkc");
        }
        System.out.println(lll);
        Collections.fill(l, "m");
        System.out.println(l + "\n");
    }
}

结果 is:

[a, c, b, d]

[d, b, c, a]

[a, b, c, d]

abcd
[m, m, m, m]