用java 8里面的lambda表达式写一个简单加法运算
发布网友
发布时间:2022-04-10 03:33
我来回答
共3个回答
热心网友
时间:2022-04-10 05:02
/*
一个接口,如果只有一个显式声明的抽象方法,
那么它就是一个函数接口。
一般用@FunctionalInterface标注出来(也可以不标)
*/
public interface Inteface1{
//可以不用abstract修饰
public abstract void test(int x,int y);
//public void test1();//会报错,不能有两个方法,尽管没有使用abstract修饰
public boolean equals(Object o);//equals属于Object的方法,所以不会报错
}
public class Test{
public static void main(String args[]){
Inteface1 f1=(int x,int y)->{System.out.println(x+y);};
f1.test(3,4);
Inteface1 f2=(int x,int y)->{ System.out.println("Hello Lambda!\t the result is " +(x+y));};
f2.test(3,4);
}
}
热心网友
时间:2022-04-10 06:20
class Test {
static Plus add = (a, b) -> a + b;
public static void main(String args[]) {
System.out.println(add.plus(1,2));
}
interface Plus {
int plus(int a, int b);
}
}
热心网友
时间:2022-04-10 07:55
http://www.iteye.com/news/24631或许有帮助