首页 > 代码库 > java ? super E 和 ? extends E
java ? super E 和 ? extends E
/** * 泛型固定下边界 * ? super E * * 泛型固定上边界 * ? extends E */ public static void main(String[] args) { //demo1(); TreeSet<Student> ts1 = new TreeSet<>(new CompareByAge()); ts1.add(new Student("张三", 33)); ts1.add(new Student("李四", 13)); ts1.add(new Student("王五", 23)); ts1.add(new Student("赵六", 43)); TreeSet<BaseStudent> ts2 = new TreeSet<>(new CompareByAge()); ts2.add(new BaseStudent("张三", 33)); ts2.add(new BaseStudent("李四", 13)); ts2.add(new BaseStudent("王五", 23)); ts2.add(new BaseStudent("赵六", 43)); System.out.println(ts2); } public static void demo1() { ArrayList<Student> list1 = new ArrayList<>(); list1.add(new Student("张三", 23)); list1.add(new Student("李四", 24)); ArrayList<BaseStudent> list2 = new ArrayList<>(); list2.add(new BaseStudent("王五", 25)); list2.add(new BaseStudent("赵六", 26)); list1.addAll(list2); } } class CompareByAge implements Comparator<Student> { @Override public int compare(Student s1, Student s2) { int num = s1.getAge() - s2.getAge(); return num == 0 ? s1.getName().compareTo(s2.getName()) : num; } }
java ? super E 和 ? extends E
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。