TreeSet笔记02

来源:互联网 发布:淘宝new balance正品店 编辑:程序博客网 时间:2024/09/21 08:17
package com.jenthor;import java.util.*;/* * 当元素自身不具备比较性,或者具备的比较性不是所需的、 * 这时就让容器自身具备比较性。 * 定义了比较容器,将比较器对象作为参数传递给TreeSet集合的构造函数 *  * 当两种排序都存在时,以比较器为主。 *  * 定义一个类,实现Comparator接口,覆盖compare方法。 *  *  *  */public class TreeSetDemo2 {public static void main(String[] args) {TreeSet ts = new TreeSet(new Mycompare());ts.add(new Student("lisi02", 22));ts.add(new Student("lisi007", 20));ts.add(new Student("lisi09", 19));ts.add(new Student("lisi08", 18));ts.add(new Student("lisi08", 18));ts.add(new Student("lisi08", 18));Iterator in = ts.iterator();while (in.hasNext()) {Student s = (Student) in.next();System.out.println(s.getName() + "..." + s.getAge());}}}class Mycompare implements Comparator {public int compare(Object o1, Object o2) {Student s1 = (Student) o1;Student s2 = (Student) o2;int num = s1.getName().compareTo(s2.getName());if (num == 0) {  return  new Integer(s1.getAge()).compareTo(new Integer(s2.getAge()));   }return num;}}

0 0
原创粉丝点击