要比較三個對象的字段大小,需要通過比較對象的字段來判斷大小。下面是一個示例代碼,比較了三個對象的某個字段大小:
import java.util.Comparator;
public class Main {
public static void main(String[] args) {
// 創建三個對象
Person person1 = new Person("John", 25);
Person person2 = new Person("Alice", 30);
Person person3 = new Person("Bob", 20);
// 比較三個對象的age字段大小
int result = Comparator.comparingInt(Person::getAge)
.compare(person1, person2);
if (result > 0) {
System.out.println(person1.getName() + "的age字段大于" + person2.getName() + "的age字段");
} else if (result < 0) {
System.out.println(person1.getName() + "的age字段小于" + person2.getName() + "的age字段");
} else {
System.out.println(person1.getName() + "的age字段等于" + person2.getName() + "的age字段");
}
}
private static class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}
}
在上面的代碼中,通過Comparator.comparingInt來創建一個比較器,通過Person::getAge指定要比較的字段為age。然后使用compare方法比較person1和person2對象的age字段大小,將結果保存在result變量中。根據result的值可以判斷字段的大小關系。