我目前开始学习Java中的Lambda表达式,并且试图弄清楚为什么此代码不起作用
我有一个普通班:
import java.util.function.ToIntBiFunction;
public class testclass {
public testclass() {
}
public static ToIntBiFunction<Integer,Integer> multit2 = (Integer a,Integer b)->{
return a*b;
};
public static Integer multit(Integer a, Integer b) {
return a*b;
}
}
而另一班的主要
public class ImageCovertor{
public static void main (String[] args) throws IOException {
int d;
testclass test = new testclass();
BiFunction<ToIntBiFunction,Integer, Integer> ddd = (ToIntBiFunction fn, Integer a)->{
return fn.applyAsInt(a,a);
};
d= ddd.apply(testclass::multit, 5);
System.out.println(d);
}//end of main
public static ToIntBiFunction<Integer,Integer> multit = (Integer a,Integer b)->{
return a*b;
};
}
我试图在ddd lambda函数中将multit作为参数传递
但是像这样的代码给我一个错误:
d= ddd.apply(testclass::multit, 5);
testclass类型未定义适用于此处的multit(Object,Object)
也试图在主要功能,但它给了我同样的错误
当我写代码
testclass.multit
代替
testclass::multit
有人可以向我解释第二个为什么不起作用以及如何解决这个问题吗?
谢谢
最佳答案
testclass::multit
表示属于multit
的方法testclass
。您拥有的是一个包含函数的字段testclass.multit
。包含函数的字段与方法不同。
class MyClass {
// This is a method, `MyClass::foo`
public static Integer foo(Integer a, Integer b) {
return a*b;
}
// This is a field holding a function, `MyClass.bar`
public static ToIntBiFunction<Integer, Integer> bar = (Integer a,Integer b)-> {
return a*b;
};
}