如何以编程方式查找继承了 Java 中特定类的类列表
我有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要查看 reflections 库
使用 Reflections,您可以查询元数据,例如:
You might want to look at the reflections library
Using Reflections you can query your metadata such as: