黑马程序员技术交流社区

标题: TreeSet 排序 [打印本页]

作者: 三土    时间: 2015-7-28 23:16
标题: TreeSet 排序
package com.itheima1;

import java.util.Iterator;
import java.util.TreeSet;

public class std implements Comparable {
       
        private String name;
        private int age;

        std(String name, int age) {
                this.name = name;
                this.age = age;
        }

        public String getName() {
                return name;
        }

        public void setName(String name) {
                this.name = name;
        }

        public int getAge() {
                return age;
        }

        public void setAge(int age) {
                this.age = age;
        }

        @Override
        public int compareTo(Object o) {
                // TODO Auto-generated method stub
                if (!(o instanceof std)) {
                        throw new RuntimeException("不是学生呢对象");
                }
                std t1 =(std)o;
                if (this.age>t1.age) {
                        return 1;
                }
                if (this.age<t1.age) {
                        return -1;
                }
                return this.name.compareTo(t1.name);
        }

        public static void main(String[] args) {
                TreeSet tree = new TreeSet<>();
                tree.add(new std("zy", 18));
                tree.add(new std("zy", 18));
                tree.add(new std("zy1", 18));
                tree.add(new std("zy", 20));
                tree.add(new std("zy", 25));
               
            Iterator it =tree.iterator();
            tree.iterator();
            while (it.hasNext()) {
                         std sd =(std)it.next();
                         System.out.println(sd.name+"__________"+sd.age);
                }
        }
}



作者: Matrix_heima    时间: 2015-7-28 23:19
对于TreeSet ,要么让元素实现Comparable接口,要么向集合传递一个Comparator的子类对象
作者: rxtm    时间: 2015-7-28 23:32
记不住这么多呀
作者: umbriel    时间: 2015-7-28 23:47
object类对象的名字最好不要用o吧,容易和0混淆
作者: 菜鸟哥    时间: 2015-7-28 23:48
Matrix_heima 发表于 2015-7-28 23:19
对于TreeSet ,要么让元素实现Comparable接口,要么向集合传递一个Comparator的子类对象 ...

树结构!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2