内容简介:lambda表达式又称为匿名函数,可以让函数作为其他方法的参数,先举例两个简单的接口:我们可以这样定一个匿名函数:其中
lambda表达式又称为匿名函数,可以让函数作为其他方法的参数,先举例两个简单的接口:
-
java.util.function.Function<T, R>
:T
为入参类型,R
为返回值类型; -
java.util.function.BiFunction<T, U, R>
:T
为第一个参数类型,U
为第二个参数类型,R
为返回值类型。
我们可以这样定一个匿名函数:
Function<Integer,Integer> compute = a -> a + 1; BiFunction<Integer,Integer,Integer> = (a, b) -> a + b;
其中 ->
前的为入参,后面为计算,若只有一行计算可不用花括号,也不用显式 return
结果。
下面演示两个方法,分别接受 Function
, BiFunction
作为入参的示例:
public class DemoLambdas { public static Integer computeOne(Function<Integer,Integer> function, Integer value){ return function.apply(value); } public static Integer computeTwo(BiFunction<Integer,Integer,Integer> function, Integer value, Integer value2){ return function.apply(value,value2); } }
在调用处,我们可以通过动态实现Function来实现不同的算法:
log.info(DemoLambdas.computeOne(a -> -a, 5).toString()); log.info(DemoLambdas.computeOne(a -> a - 1, 5).toString()); log.info(DemoLambdas.computeTwo((a, b) -> a + b,10,5).toString()); log.info(DemoLambdas.computeTwo((a, b) -> { Integer c = a - b; return c + a + b; } ,10,5).toString());
阅读量: 2
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 【译】函数声明 VS 函数表达式
- 函数声明?函数表达式?我该怎么选?!
- JavaScript(js)函数声明与函数表达式的区别
- 深入理解 lambda表达式 与 函数式编程 函数式接口源码解析(二)
- ECMAScript学习笔记(八)——函数表达式
- Java 函数式编程(二)Lambda表达式
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Developing Large Web Applications
Kyle Loudon / Yahoo Press / 2010-3-15 / USD 34.99
As web applications grow, so do the challenges. These applications need to live up to demanding performance requirements, and be reliable around the clock every day of the year. And they need to withs......一起来看看 《Developing Large Web Applications》 这本书的介绍吧!