2017-07-25 77 views

回答

3

在你的情況看起來像一個BiFunction

BiFunction<Integer, Integer, Integer> fun = (a, b) -> a + b; 
int sum = fun.apply(12, 13); 

而編譯器將(a, b) -> a + b視爲lambda表達式,並且必須將其分配ned到某種Functional Interface,但您將其分配給int

相關問題