java8 lambda表达式和双冒号 :: 使用

本文通过实例解析了Java 8引入的Lambda表达式如何简化代码,展示了如何使用`Predicate`接口和类内静态方法过滤绿色苹果。从基础的for循环到更简洁的函数式编程风格,提升代码可读性和效率。
摘要由CSDN通过智能技术生成

举个例子
假设你有一个Apple类,它有一个getColor方法,还有一个变量inventory保存着一个Apples的列表。你可能想要选出所有的绿苹果,并返回一个列表。通常我们用筛选(filter)一词来表达这个概念。在Java 8之前,你可能会写这样一个方法filterGreenApples:

public static List<Apple> filterGreenApples(List<Apple> inventory){ 
 	List<Apple> result = new ArrayList<>(); 
 	for (Apple apple: inventory){ 
 		if ("green".equals(apple.getColor())) {
 			result.add(apple); 
 		} 
 	} 
 	return result; 
}

接下来,我们对代码做简单的调整,引入一个判断的接口,专门对 if 后边的判断做处理

public interface Predicate<T>{
	boolean test(T t);
}

有了这个以后,我们的筛选方法就可以这么写

public static List<Apple> filterGreenApples(List<Apple> inventory,Predicate<Apple> predicate){ 
 	List<Apple> result = new ArrayList<>(); 
 	for (Apple apple: inventory){ 
 		if (predicate.test(apple)) {
 			result.add(apple); 
 		} 
 	} 
 	return result; 
}

接下来,我们准备调用筛选苹果的方法,以前我们可以使用匿名内部类的方法例如:

	List<Apple> resultList = t.filter(appleList, new Predicate<Apple>() {
         @Override
         public boolean test(Apple apple) {
             return "green".equals(apple.getColor());
         }
     })

然而,在java8后,可以对以上代码进行lambda优化,优化后:

List<Apple> resultList = t.filter(appleList, apple -> "green".equals(apple.getColor()));

后边匿名内部类,变成了一行lambda表达式,是不是简单了许多。
如果此时,我们在Apple中再次调整,增加一个 static 静态方法进行判断,将会变成以下的样子

 public static boolean isGreen(Apple apple){
        return "green".equals(apple.getColor());
 }

使用类中将会这么写

List<Apple> resultList = t.filter(appleList, apple -> Apple.isGreen(apple));
// java8对于这种static的方法调用,还提供了另外的写法
List<Apple> resultList = t.filter(appleList, Apple::isGreen);
// 上边两行效果相同
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值