为什么方法参考不适用于此?

时间:2017-12-16 07:59:10

标签: generics lambda type-inference method-reference

我的方法看起来像这样。

static <R> R applyOthers(Some some, Function<List<Other>, R> function) {
    List<Other> others = ...;
    return function.appply(others);
}

现在,当我尝试这个时,

withSome(some -> {
   List<Other> others1 = applyOthers(some, v -> v); // works
   List<Other> others2 = applyOthers(some, Function::identity); // doesn't
});

错误,我明白了。

incompatible types: unexpected static method <T>identity() found in unbound lookup
  where T is a type variable:
    T extends Object declared in method <T>identity()

为什么::identity不起作用?

2 个答案:

答案 0 :(得分:1)

Function<Object, Object> f1 = v1 -> v1;
Supplier<Object> s1 = Function::identity;
Supplier<Object> s2 = () -> Function.identity();

看到这段代码,我想你只是误用了这里的方法参考。当我们说SomeObject::method时,此方法引用应与某些功能接口匹配。在上面的示例中,Function::identity是一种供应商实例而非java.util.function.Function实例。

答案 1 :(得分:1)

我们不应该说 Function::identity 是 Function 的供应商 -

Supplier<Function<?,?>> a = Function::identity;

这就是为什么它不起作用? 如果我们替换 '?'使用正确的类型 a.get() 可以工作。