首页 > 其他 > 详细

lambda表达式

时间:2019-12-27 00:41:45      阅读:107      评论:0      收藏:0      [点我收藏+]
/**
* 1 LambdaExpress写法:拷贝中括号,写死右箭头,落地大括号
* 2 LambdaExpress对接口的要求,接口里面的抽象方法,有且仅有一个
* 3 函数式接口才能使用Lambda写法,
* 4 新注解@FunctionalInterface
* 5 default默认实现
* 6 静态实现
*/

@FunctionalInterface
interface Foo
{
  //public void sayHello();
    public int add(int x, int y);

default int multi(int x, int y)
{
return x * y;
}

public static int div(int x, int y)
{
return x / y;
}
public static int div2(int x, int y)
{
return x / y;
}

}

public class LambdaExpressDemo
{
public static void main(String[] args)
{
/*Foo foo = new Foo()
{
@Override
public void sayHello()
{
System.out.println("********hello java180228");
}

};
foo.sayHello();*/

//Foo foo = () -> {System.out.println("********hello ");};
//foo.sayHello();

Foo foo = (x,y) -> {
System.out.println("*******come in add()");
return x + y;
};

System.out.println(foo.add(3,15));

}
}

lambda表达式

原文:https://www.cnblogs.com/liuyi13535496566/p/12105253.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!