You smiled and talked to me of nothing and I felt that for this I had been waiting long.
你微微地笑着,不同我说什么话。而我觉得,为了这个,我已等待得久了。
Lambda表达式 理解Functional Interface(函数式接口 )是学习Java8 Lambda表达式的关键所在。
Lambda 允许把函数作为一个方法的参数(函数作为参数传递进方法中)。
使用 Lambda 表达式可以
使代码变的更加简洁紧凑。
避免匿名内部类定义过多
只有核心逻辑,没有无用代码
语法
lambda 表达式的语法格式如下:
1 2 3 (parameters) -> expression (parameters) ->{ statements; }
以下是lambda表达式的重要特征:
可选类型声明: 不需要声明参数类型,编译器可以统一识别参数值;
可选的参数圆括号: 一个参数无需定义圆括号,但多个参数需要定义圆括号;
可选的大括号: 如果主体包含了一个语句,就不需要使用大括号;
可选的返回关键字: 如果主体只有一个表达式返回值则编译器会自动返回值,大括号需要指定表达式返回了一个数值。
1 2 3 4 5 6 7 8 9 10 () -> 5 x -> 2 * x (x, y) -> x – y (int x, int y) -> x + y (String s) -> System.out.print(s)
实例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 public class Java8Tester { public static void main (String args[]) { Java8Tester tester = new Java8Tester(); MathOperation addition = (int a, int b) -> a + b; MathOperation subtraction = (a, b) -> a - b; MathOperation multiplication = (int a, int b) -> { return a * b; }; MathOperation division = (int a, int b) -> a / b; System.out.println("10 + 5 = " + tester.operate(10 , 5 , addition)); System.out.println("10 - 5 = " + tester.operate(10 , 5 , subtraction)); System.out.println("10 x 5 = " + tester.operate(10 , 5 , multiplication)); System.out.println("10 / 5 = " + tester.operate(10 , 5 , division)); GreetingService greetService1 = message -> System.out.println("Hello " + message); GreetingService greetService2 = (message) -> System.out.println("Hello " + message); greetService1.sayMessage("Bobo" ); greetService2.sayMessage("Google" ); } interface MathOperation { int operation (int a, int b) ; } interface GreetingService { void sayMessage (String message) ; } private int operate (int a, int b, MathOperation mathOperation) { return mathOperation.operation(a, b); } }
注意
Lambda 表达式主要用来定义行内执行的方法类型接口,例如,一个简单方法接口。在上面例子中,我们使用各种类型的Lambda表达式来定义MathOperation接口的方法。然后我们定义了sayMessage的执行。
Lambda 表达式免去了使用匿名方法的麻烦,并且给予Java简单但是强大的函数化的编程能力。
变量作用域 lambda 表达式只能引用标记了 final 的外层局部变量,这就是说不能在 lambda 内部修改定义在域外的局部变量,否则会编译错误。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class Java8Tester { final static String salutation = "Hello! " ; public static void main (String args[]) { GreetingService greetService1 = message -> System.out.println(salutation + message); greetService1.sayMessage("Bobo" ); } interface GreetingService { void sayMessage (String message) ; } }
我们也可以直接在 lambda 表达式中访问外层的局部变量:
1 2 3 4 5 6 7 8 9 10 11 public class Java8Tester { public static void main (String args[]) { final int num = 1 ; Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num)); s.convert(2 ); } public interface Converter <T1 , T2 > { void convert (int i) ; } }
lambda 表达式的局部变量可以不用声明为 final,但是必须不可被后面的代码修改(即隐性的具有 final 的语义)
1 2 3 4 5 6 7 int num = 1 ; Converter<Integer, String> s = (param) -> System.out.println(String.valueOf(param + num)); s.convert(2 ); num = 5 ; final
在 Lambda 表达式当中不允许声明一个与局部变量同名的参数或者局部变量。
1 2 String first = "" ; Comparator<String> comparator = (first, second) -> Integer.compare(first.length(), second.length());