给出以下代码:

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) {
}

最佳答案

方法noOpRuleRulesEngine类的实例方法。

要以常规代码调用它,您需要一个RulesEnigne对象以及一个DomainObject对象:

public static void callNoOpRule(RulesEngine rulesEngine, DomainObject domainObject) {
    rulesEngine.noOpRule(domainObject);
}


要通过MethodHandle调用它,还需要两个对象:

mh.invoke(rulesEngine, domainObject);


或者,如果您尝试从RulesEngine的实例方法调用:

mh.invoke(this, domainObject);

09-26 23:29