其他分享
首页 > 其他分享> > 01 lamdba表达式

01 lamdba表达式

作者:互联网

Lambda 允许把函数作为一个方法的参数,使用 Lambda 表达式可以使代码变的更加简洁紧凑。

1、操作步骤

public interface LambdaInterface1 {
    void test();
}
public interface LambdaInterface2 {
    void test(int n);
}
public interface LambdaInterface3 {
    void test(int n,int m);
}
public class LambdaInterface1Impl{
  public void test()
  {
    System.out.println("LambdaInterface1Impl.test()");
  }
}
或者
new LambdaInterface1() {
    @Override
    public void test() {
       System.out.println("LambdaInterface1.test()");
    }
}.test();
((LambdaInterface1) () -> System.out.println("LambdaInterface1.test()")).test();

((LambdaInterface2) n -> System.out.println("LambdaInterface2.test(int n)")).test(2);

(LambdaInterface3) (n, m) -> System.out.println("LambdaInterface3.test(int n, int m)")).test(1, 2);
本来是这样:
Integer[] is = new Integer[]{6,8,4,34,7,3,23,432};
Arrays.sort(is, new Comparator<Integer>() {
    @Override
    public int compare(Integer o1, Integer o2) {
        return o1-o2;
    }
});
可以简化为这样:
Integer[] is = new Integer[]{6,8,4,34,7,3,23,432};
Arrays.sort(is, (o1, o2) -> o1-o2);

以上就是lambda表达式的基本用法。

标签:01,int,LambdaInterface1,lamdba,System,test,Integer,public,表达式
来源: https://www.cnblogs.com/alichengxuyuan/p/12625610.html