给出以下代码:
MethodType mt = MethodType.methodType(void.class, DomainObject.class);
NOOP_METHOD = RULE_METHOD_LOOKUP.findVirtual(RulesEngine.class, "noOpRule", mt);
产生的NOOP_METHOD为
MethodHandle(RulesEngine,DomainObject)void
为什么第一个参数在那里,当我调用它时会导致失败,例如
mh.invoke(domainObject);
因为错误消息是:
java.lang.invoke.WrongMethodTypeException: cannot convert MethodHandle(RulesEngine,DomainObject)void to (DomainObject)void
这是有问题的方法:
public void noOpRule(DomainObject d) {
}
最佳答案
方法noOpRule
是RulesEngine
类的实例方法。
要以常规代码调用它,您需要一个RulesEnigne
对象以及一个DomainObject
对象:
public static void callNoOpRule(RulesEngine rulesEngine, DomainObject domainObject) {
rulesEngine.noOpRule(domainObject);
}
要通过
MethodHandle
调用它,还需要两个对象:mh.invoke(rulesEngine, domainObject);
或者,如果您尝试从
RulesEngine
的实例方法调用:mh.invoke(this, domainObject);