一.Set接口 //HashSet综合举例 import java.util.*; public class Test{ public static void main(String[] args){ Set<Name> s = new HashSet<Name>(); s.add(new Name("Li","Ming")); s.add(new Name("Sun","Lei")); s.add(n…
1. sort 对集合进行排序 public static <T extends Comparable<? super T>> void sort(List<T> list) public static <T> void sort(List<T> list, Comparator<? super T> c) 在使用List时想根据List中存储对象的某一字段进行排序,那么我们要用到Collections.sort方法对list排序,用…