λ基础语法

  

λ表达式的基本语法

  

java8中引入一个新的操作符“→”,该操作符称为箭头操作符或λ操作符。
操作符将λ表达式拆分为左右两部分:
左侧:λ表达式的参数列表
右侧:λ表达式中所需执行的功能,称为λ体

  
语法格式一:无参数,无返回值
  

()→System.out.println(“你好e路纵横开发团队“);

  
 <代码> @Test
  公共空间test1 () {
  
  int num=0;//匿名内部类
  可运行r=新Runnable () {
  @Override
  公共空间run () {
  system . out。println (“Hello World !”+ num);//在匿名内部类中应用了同级别的变量时,在jdk1.7以前,变量必须申明为决赛,在jdk1.8中,默认加上决赛
  }
  };
  r.run ();
  
  System.out.println (“- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -”);//λ表达式
  可运行r1=()→system . out。println(“你好e路纵横开发团队”+ num);
  r1.run ();
  } 
  
语法格式二:有一个参数,无返回值
  

(x)→

System.out.prinrln (x);   
 <代码> @Test
  公共空间test2 () {
  Consumer消费者=(x)→System.out.println (x);
  consumer.accept (“e路纵横”);
  } 
  
语法格式三:若只有一个参数,小括号可以省略不写
  

x→

System.out.println (x);   
 <代码> @Test
  公共空间test3 () {
  Consumer消费者=x→System.out.println (x);
  consumer.accept (“e路纵横”);
  } 
  
语法格式四:有两个以上的参数,有返回值,并且λ体中有多条语句
  

Comparator比较器=(x, y)→{
System.out.println(“函数式接口“);
返回Integer.compare (x, y);
}

  
 <代码> @Test
  公共空间test4 () {
  Comparator比较器=(x, y)→{
  System.out.println(“函数式接口”);
  返回Integer.compare (x, y);
  };
  } 
  
语法格式五:若λ体中只有一条语句,返回和大括号都可以省略不写
  

Comparator比较器=(x, y)→Integer.compare (x, y);

  
 <代码> @Test
  公共空间test5 () {
  Comparator比较器=(x, y)→Integer.compare (x, y);
  } 
  
语法格式六:λ表达式的参数列表的数据类型可以省略不写,因为JVM编译器可以通过上下文推断出数据类型,即“类型推断”。
  

(整数x,整数y)→Integer.compare (x, y);其中整数可以省略不写

  

λ表达式需要“函数式接口”的支持

  

函数式接口:接口中只有一个抽象方法的接口,称为函数式接口。可以使用注解@FunctionInterface修饰,可以检查接口是否是函数式接口

  
 <代码> @FunctionalInterface
  公共接口MyFun{
  
  公共整数getValue(整数num);
  } 

λ基础语法