摘要:
public class Test { public static void sort(){ List<String> st = new ArrayList<String>(); st.add("3"); st.add("2"); System.out.println(st); Collection 阅读全文
摘要:
1. Comparator 和 Comparable 相同的地方 他们都是java的一个接口, 并且是用来对自定义的class比较大小的, 什么是自定义class: 如 public class Person{ String name; int age }. 当我们有这么一个personList,里 阅读全文