概述
1 、无参数,无返回值
() -> System.out.println("hello World")
Runnable hello_world = () -> System.out.println("hello World");
hello_world.run(); //控制台输出hello World
2 、有参数,无返回值
(x) -> System.out.println("hello "+x)
// 一个参数,无返回值
//(x) -> System.out.println("hello "+x)
//如果只有一个参数,括号可省略,如: x -> System.out.println("hello "+x)
Consumer hello_world1 = (x) -> System.out.println("hello "+x);
hello_world1.accept("PangHao");
3 、多个参数,有返回值
(x,y)->x+y
//多个参数有返回值,附带代码块
//(x,y)->x+y
IntBinaryOperator sumInt = (x, y) -> {
System.out.println(x + "+" + y + "=" + (x + y));
return x + y;
};
//如果单行语句不用写return和大括号
IntBinaryOperator tComparator = (x, y) -> x + y;
System.out.println(tComparator.applyAsInt(7,8));
4 、数据类型省略
/*
* Lambda 表达式中的参数类型都是由编译器推断得出的。
* Lambda 表达式中无需指定类型,程序依然可以编译,这是因为 javac 根据程序的上下文,
* 在后台推断出了参数的类型。 Lambda 表达式的类型依赖于上下文环境,是由编译器推断出来的。这就是所谓的 “类型推断”
*/
// 04 Lambda 表达式的参数列表的数据类型可以省略不写,因为JVM编译器通过上下文推断出,数据类型,即“类型推断”
Comparator<Integer> integerComparator01 = ( Integer x, Integer y) -> Integer.compare(x, y);
System.out.println( integerComparator01.compare(6,5));
//还可以简化
Comparator<Integer> integerComparator02 = ( x, y) -> Integer.compare(x, y);
System.out.println( integerComparator02.compare(3,5));
最后
以上就是开心野狼为你收集整理的lambda表达式基本语法的全部内容,希望文章能够帮你解决lambda表达式基本语法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复