定义好的函数,不知道该如何使用。// 不知道怎么引用BinaryOperator<Long> add = (x, y) -> x + y;
2 回答
喵喵时光机
TA贡献1846条经验 获得超7个赞
public class Main {
private long t, u;
private Long test(BinaryOperator<Long> b) {
return b.apply(t, u);
}
public static void main(String[] args) {
Main m = new Main();
m.t = 1; m.u = 2;
BinaryOperator<Long> b = (x, y) -> x + y;
System.out.println(m.test(b));
}
}
单独拉出来是没法用的,Lambda只是定义了数据的操作方式,也就是定义了一个函数。具体在哪里用,需要定义一个方法,参数为lambda表达式(函数式接口),然后方法内部调用lambda实际的操作(接口定义的中那一个函数),比如accept。
holdtom
TA贡献1805条经验 获得超10个赞
添加回答
举报
0/150
提交
取消