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

44次阅读
没有评论

共计 954 个字符,预计需要花费 3 分钟才能阅读完成。

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

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

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计954字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)