使用JDK 1.8.0_181和JDK 10.0.2时,都会收到此编译错误:
test \ Account.java:[13,88]错误:类型不兼容:方法参考无效
对于此变量声明:public final MetaProperty<Integer> BALANCE_PROP_INVALID = new MetaProperty<Integer>(Account::getBalance);
但这既可以编译也可以正常运行:public final MetaProperty<Integer> BALANCE_PROP_VALID = new MetaProperty<>(account -> ((Account) account).getBalance());
Here是要点。有谁知道为什么这是无效的,并希望解决方法?
仅供参考,我对反思不感兴趣。
最佳答案
我的猜测是您的构造函数期望Function<Object, T>
或类似的东西。它无法知道您打算开设一个帐户。一种解决方法是使类具有两个泛型。
class MetaProperty<A, R> {
MetaProperty(Function<A, R> getter) { /* */ }
}
public static final MetaProperty<Account, Integer> BALANCE_PROP_INVALID
= new MetaProperty<>(Account::getBalance);