给岁月以文明,而不是给文明以岁月。——《三体》
在上一篇文章(传送门)中介绍了JDK为我们提供的常用函数式接口,JDK不仅提供的这些函数式接口,其中一些接口还为我们提供了实用的默认方法,这次我们来介绍一下Comparator复合。
欢迎关注微信公众号:万猫学社,每周一分享Java技术干货。
Comparator的使用
在之前文章的例子中,我们使用Comparator.comparing
静态方法构建了一个Comparator
接口的实例,我们再来简单介绍一下。先来看一下Mask类是怎么写的:
package one.more.study; /** * 口罩 * @author 万猫学社 */ public class Mask { public Mask() { } public Mask(String brand, String type, double price) { this.brand = brand; this.type = type; this.price = price; } /** * 品牌 */ private String brand; /** * 类型 */ private String type; /** * 价格 */ private double price; public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } public String getType() { return type; } public void setType(String type) { this.type = type; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } @Override public String toString() { return "Mask{" + "brand='" + brand + '\'' + ", type='" + type + '\'' + ", price=" + price + '}'; } }
然后,根据口罩品牌对口罩列表进行正序排序:
List<Mask> maskList = new ArrayList<>(); maskList.add(new Mask("3M", "KN95",17.8)); maskList.add(new Mask("Honeywell", "KN95",18.8)); maskList.add(new Mask("3M", "FFP2",19.8)); maskList.add(new Mask("Honeywell", "N95",19.5)); maskList.sort(Comparator.comparing(Mask::getBrand)); for (Mask mask : maskList) { System.out.println(mask); }
运行结果如下:
Mask{brand='3M', type='KN95', price=17.8} Mask{brand='3M', type='FFP2', price=19.8} Mask{brand='Honeywell', type='KN95', price=18.8} Mask{brand='Honeywell', type='N95', price=19.5}
欢迎关注微信公众号:万猫学社,每周一分享Java技术干货。
逆序
需求改了,要求按照口罩品牌进行逆序排列,这是还需不需要再构建一个Comparator
接口的实例呢?答案是不需要,Comparator
接口有一个默认方法reversed
可以使其逆序,把上面的例子稍微修改一下:
maskList.sort(Comparator.comparing(Mask::getBrand).reversed());
运行结果如下:
Mask{brand='Honeywell', type='KN95', price=18.8} Mask{brand='Honeywell', type='N95', price=19.5} Mask{brand='3M', type='KN95', price=17.8} Mask{brand='3M', type='FFP2', price=19.8}
欢迎关注微信公众号:万猫学社,每周一分享Java技术干货。
比较器链
需求又改了,先按照口罩品牌逆序排序,如果口罩品牌一样,再按照口罩类型正序排序。Comparator
接口还有一个默认方法thenComparing
就是做这个的,它的入参也是一个Function
接口的实例,如果前一个比较器的比较结果相同,就当前的比较器再进行比较,我们再来修改一下上面的例子:
maskList.sort(Comparator.comparing(Mask::getBrand) .reversed() .thenComparing(Mask::getType));
运行结果如下:
Mask{brand='Honeywell', type='KN95', price=18.8} Mask{brand='Honeywell', type='N95', price=19.5} Mask{brand='3M', type='FFP2', price=19.8} Mask{brand='3M', type='KN95', price=17.8}
需求又又改了,先按照口罩品牌逆序排序,如果口罩品牌一样,再按照口罩价格正序排序。口罩价格是double
类型,如果使用thenComparing
会导致自动装箱,造成资源的白白浪费。所以,推荐使用thenComparingDouble
方法,它的入参是ToDoubleFunction
,代码修改如下:
maskList.sort(Comparator.comparing(Mask::getBrand) .reversed() .thenComparingDouble(Mask::getPrice));
运行结果如下:
Mask{brand='Honeywell', type='KN95', price=18.8} Mask{brand='Honeywell', type='N95', price=19.5} Mask{brand='3M', type='KN95', price=17.8} Mask{brand='3M', type='FFP2', price=19.8}
类似这样支持基础数据类型的方法还有两个:thenComparingInt
方法,它的入参是ToIntFunction
;thenComparingLong
方法,它的入参是ToLongFunction
。
欢迎关注微信公众号:万猫学社,每周一分享Java技术干货。
总结
默认方法名称 | 作用 | 入参 | 入参签名 |
---|---|---|---|
reversed | 逆序 | 无 | 无 |
thenComparing | 比较器链 | Function | (T) -> R |
thenComparingInt | 比较器链 | ToIntFunction | (T) -> int |
thenComparingLong | 比较器链 | ToLongFunction | (T) -> long |
thenComparingDouble | 比较器链 | ToDoubleFunction | (T) -> double |
《死磕Lambda表达式》系列
- 死磕Lambda表达式(一):初识Lambda
- 死磕Lambda表达式(二):Lambda的使用
- 死磕Lambda表达式(三):更简洁的Lambda
- 死磕Lambda表达式(四):常用的函数式接口
- 死磕Lambda表达式(五):Comparator复合
- 死磕Lambda表达式(六):Consumer、Predicate、Function复合
微信公众号:万猫学社
微信扫描二维码
获得更多Java技术干货
来源:https://www.cnblogs.com/heihaozi/p/12597052.html