package mine.dataValueFirst;
import java.util.Comparator;
public class ComparableTest {
public static void main(String[] args) {
Student st1=new Student("李四",20,128);
Student st=new Student("张三",21,120);
if(new Comparator<Student>(){//解耦合,外部类,实现Comparator override compare();方法2
@Override
public int compare(Student o1, Student o2) {
// TODO Auto-generated method stub
return o1.weight-o2.weight;
}}.compare(st1, st)>0){
System.out.println(st1.name+"说:"+st.name +", 我体重超标");
}else{System.out.println(st1.name+"说:"+st.name +",我太瘦了");}
/*if(st.compareTo(st1)>1){//方法1
System.out.println(st1.name+"说:"+st.name +", 我体重超标");
}else{System.out.println(st1.name+"说:"+st.name +",我太瘦了");}*/
}
}
class Student /*implements Comparable<Student> */{//实体类实现Comparable接口,override cmopareTo
String name;
int age;
int weight;
public Student() {
}
public Student(String name, int age, int weight) {
super();
this.name = name;
this.age = age;
this.weight = weight;
}
/*@Override
public int compareTo(Student o) {
return this.weight-o.weight;
}*/
}
本文通过一个具体的Java程序示例介绍了如何使用匿名内部类实现Comparator接口来比较两个Student对象的体重,并展示了如何在不修改Student类的前提下进行比较。此示例还对比了实现Comparable接口的方法。

被折叠的 条评论
为什么被折叠?



