如何以编程方式查找继承了 Java 中特定类的类列表

发布于 2024-11-03 07:54:59 字数 133 浏览 1 评论 0原文

我有一个名为 MyClass 的课程。是否可以以编程方式查找继承了 MyClass 的类的列表? 我知道我们可以使用反射来发现给定类的所有超类,但是我们能找到子类吗?

理论上是否可以这样做(因为我还没有听说过某个类知道它何时被扩展)?

I have a class called MyClass. Is it possible to programmatically find a list of classes that have inherited MyClass?
I know we can use reflection to discover all the superclasses of a given class, but can we find the subclasses?

Is it even theoretically possible to do so (as I haven't heard of a class being aware of when it is being extended) ?

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

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

发布评论

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

评论(1

离线来电— 2024-11-10 07:54:59

您可能需要查看 reflections


使用 Reflections,您可以查询元数据,例如:

  • 获取某种类型的所有子类型
  • 获取用某些注释进行注释的所有类型/方法/字段,无注释参数匹配
  • 获取与正则表达式匹配的所有资源

You might want to look at the reflections library


Using Reflections you can query your metadata such as:

  • get all subtypes of some type
  • get all types/methods/fields annotated with some annotation, w/o annotation parameters matching
  • get all resources matching matching a regular expression
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文