如何通过反射获取这个Method对象?

发布于 2024-10-18 21:52:53 字数 256 浏览 2 评论 0原文

这是类:

public class Foo {
  public void bar(Integer[] b) {
  }
}

现在我尝试通过反射获取此方法:

Class cls = Foo.class;
Class[] types = { /* what is here */ };
cls.getMethod("bar", types);

如何创建此“类型”?

This is the class:

public class Foo {
  public void bar(Integer[] b) {
  }
}

Now I'm trying to get this method via reflection:

Class cls = Foo.class;
Class[] types = { /* what is here */ };
cls.getMethod("bar", types);

How to create this "type"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

溺ぐ爱和你が 2024-10-25 21:52:53

Integer[].class - 这是整数数组的类文字。如果您动态需要它,可以使用 Class.forName("[Ljava.lang.Integer;") 正如 David 所说。

如果您不知道确切的类型,可以调用getMethods(),迭代返回的数组并比较名称。

Spring 有一个实用程序类 ReflectionUtils,其中有 findMethod(..) 可以执行此操作。

Integer[].class - this is the class literal for the integer array. If you need it dynamically, you can use Class.forName("[Ljava.lang.Integer;") as David noted.

If you don't know the exact types, you can call getMethods(), iterate the returned array and compare names.

Spring has an utility class ReflectionUtils, which have findMethod(..) that do this.

终止放荡 2024-10-25 21:52:53
Integer[].class

哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈

Integer[].class

blah blah blah blah blah blah

说不完的你爱 2024-10-25 21:52:53

有点愚蠢的是,Class没有方法给出相应的数组类,只能反过来。这里有一个解决方法:

<E> public static Class<E[]> arrayClass(Class<E> elementClass) {
    @SuppressWarnings("unchecked")
    Class<E[]> arrayClass = (Class<E[]>) Array.newInstance(elementClass, 0).getClass();
    return arrayClass;
}

使用这个方法你可以写

Class cls = Foo.class;
Class[] types = { arrayClass(Integer.class) };
cls.getMethod("bar", types);

当然,如果你可以写Integer.class,你也可以写Integer[].class。因此,只有当您知道您的方法采用某个类的数组(您只能将其作为类对象获取)时,这才有用,否则请使用 Bozho 给出的答案。

It is a bit stupid that Class has no method to give the corresponding array class, only the other way around. Here is a workaround:

<E> public static Class<E[]> arrayClass(Class<E> elementClass) {
    @SuppressWarnings("unchecked")
    Class<E[]> arrayClass = (Class<E[]>) Array.newInstance(elementClass, 0).getClass();
    return arrayClass;
}

With this method you could write

Class cls = Foo.class;
Class[] types = { arrayClass(Integer.class) };
cls.getMethod("bar", types);

Of course, if you can write Integer.class, you could also write Integer[].class. So this is only useful if you know your method takes an array of some class which you only get as a class object, otherwise use the answers given by Bozho.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文