如何在 Java 中使用泛型获取反射构造函数?

发布于 2024-11-12 22:15:12 字数 122 浏览 1 评论 0原文

现在存在下面的类:

class A{
    private A(HashMap map){

    }
}

如何获取参数是带有反射的泛型的构造函数?

编辑:问题已编辑。

now exists a class below:

class A{
    private A(HashMap map){

    }
}

how can I get the constructor that the parameters are generics with reflection?

EDIT : Question edited.

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

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

发布评论

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

评论(1

心头的小情儿 2024-11-19 22:15:12

Java 中不能有模板。您可以拥有泛型,并且可以从构造函数中获取该信息。

Constructor aConstructor = A.class.getConstructors()[0];
Class[] parameterTypes = aConstructor.getParameterTypes();
System.out.println(Arrays.toString(parameterTypes)); // prints [java.util.HashMap]

顺便说一句:有什么理由它必须是 HashMap 而不是 Map 吗?

You can't have templates in Java. You can have Generics and you can get that information from the Constructor.

Constructor aConstructor = A.class.getConstructors()[0];
Class[] parameterTypes = aConstructor.getParameterTypes();
System.out.println(Arrays.toString(parameterTypes)); // prints [java.util.HashMap]

BTW: Is there any reason it has to be a HashMap and not a Map?

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