importjava.util.*;
publicclassMain{publicstaticvoidmain(String[]args){Listlist = Arrays.asList("one Two three Four five six one three Four".split(""));
System.out.println(list);
System.out.println("最大值: " + Collections.max(list));
System.out.println("最小值: " + Collections.min(list));
}}
以上代碼運(yùn)行輸出結(jié)果為:
[one, Two, three, Four, five, six, one, three, Four]
最大值: three
最小值: Four