JAVA中TreeMap类两种常用构造方法
2021-04-10 05:28
标签:this 实现 compare tor new err span http ide JAVA的JDK文档中,TreeMap类有四种构造方法,下面我们讲述最常见的两类: 第一种: 第一种构造方法,创建对象时如果没有传入比较器,那么就按元素的自然顺序排序; 这里,元素的"自然顺序"是什么?其实答案就是,比较对象要实现 Comparable 接口, 自然比较的规则就是对象在实现Comparable 接口中,重写CompareTo()函数时定义的规则; 我们第一个Student类,实现Comparable接口,并重写CompareTo方法 在定义时如下使用: 第二种方法,就是在定义时传入比较器了,Student类不需要实现Comparable接口了 但是在定义时,需要传入一个比较器,如下: 两种方法相比较,第二种灵活性更好; JAVA中TreeMap类两种常用构造方法 标签:this 实现 compare tor new err span http ide 原文地址:https://www.cnblogs.com/debug-the-heart/p/13369706.htmlpublic class Student implements Comparable
Student s1 = new Student("Allen", 20);
Student s2 = new Student("Beyonce", 20);
Student s3 = new Student("Catalina", 20);
Student s4 = new Student("Diana", 20);
// 无参的构造方法
TreeMap
public class Student{
private String name;
private int age;
public Student() {
}
public Student(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 String toString() {
return "Student{" +
"name=‘" + name + ‘\‘‘ +
", age=" + age +
‘}‘;
}
}
TreeMap
文章标题:JAVA中TreeMap类两种常用构造方法
文章链接:http://soscw.com/index.php/essay/73656.html