gpt4 book ai didi

java - 使用反射调用方法时传递什么对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:23:13 24 4
gpt4 key购买 nike

我正在使用 Reflections 从使用特定注释进行注释的类中获取方法。获得类中的方法列表后,我会循环遍历这些方法,如果该方法匹配特定的返回类型,我想调用该方法。出于测试目的,我知道我得到的方法返回一个字符串。

Reflections reflections = new Reflections(new ConfigurationBuilder()
.setScanners(new TypesScanner(), new TypeElementsScanner())
.setUrls(ClasspathHelper.forPackage("stressball"))
);

Set<Class<?>> annotated = reflections.getTypesAnnotatedWith(DependantClass.class);
System.out.println(annotated);

for(Class<?> clazz : annotated) {
for(Method method : clazz.getMethods()) {
if(method.isAnnotationPresent(DependantResource.class)) {
if(method.getReturnType() == String.class) {
System.out.println(method.invoke(method,(Object[]) null));
}
}
}
}

这是我尝试调用的方法

@DependantResource
public String showInjector() {
return "This is an injector";
}

我不断收到以下错误,我知道它与我传递给 invoke 的对象有关,但是循环中的方法不是我应该传递的对象吗?

Exception in thread "main" java.lang.IllegalArgumentException: object is not an instance of declaring class
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at stressball.test.DefaultTest.main(DefaultTest.java:35)

最佳答案

这是不正确的:

method.invoke(method,(Object[]) null)

你应该先实例化一个对象,然后再调用。像这样的东西:

method.invoke(clazz.newInstance(), (Object[]) null)

关于java - 使用反射调用方法时传递什么对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9561168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com