温馨提示×

java怎么比较三个对象的字段大小

小亿
80
2023-11-04 16:33:08
栏目: 编程语言

要比较三个对象的字段大小,需要通过比较对象的字段来判断大小。下面是一个示例代码,比较了三个对象的某个字段大小:

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的值可以判断字段的大小关系。

0