是否可以使用Java反射或各种技术来检查一个类是否有父类?
嗨,是否可以使用Java Reflection或各种技术来检查一个类是否有父类?
这个想法是因为需要创建一个实用程序类,该实用程序类接受一个对象,打印出其属性,如果父类存在,则打印出父类的属性。
编辑 我的意思是问是否有一种方法可以不断检查一个类是否有一个母类,一直到 Object 类。
Possible Duplicate:
Is it possible to use Java Reflection to print out attributes of the parent class?
Hi, is it possible to use Java Reflection or various techniques to check if a class has a parent class?
This thought came as something for a need to create a utility class that takes in an object, print out its attributes, and if a parent class exists, to print out the attributes of the parent class.
Edit I meant to ask if there was a way to keep checking if a class had a mother class all the way up to the Object class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这个:
所有超类:
Use this:
All superclasses:
您可以使用 for 循环来遍历父类。
注意:对象、基元、接口和数组都将
null
作为超类。You can use a for loop to walk up the parent classes.
Note: Object, primitives, interfaces and array's all have
null
as a superclass.