gpt4 book ai didi

java - Java 中通过属性对数组进行排序

转载 作者:行者123 更新时间:2023-12-01 17:06:44 25 4
gpt4 key购买 nike

我有一个 Java 对象数组。假设产品 products[]

每个产品都有一个价格,例如 product.getPrice()

我可以按价格订购产品数组的最佳方式是什么,以便我可以调用 products[0] 获取最昂贵的产品,products[products.length-1] 最便宜的?

最佳答案

类似这样的事情:

Arrays.sort(products, new Comparator<Product>() {

@Override
public int compare(Product p1, Product p2) {
if (p1.getPrice() > p2.getPrice()) return -1;
if (p1.getPrice() < p2.getPrice()) return 1;
return 0;
}

});

关于java - Java 中通过属性对数组进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25224498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com