Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What's the difference between this question and the one you asked ~20 minutes ago? – Matt Ball May 23 '11 at 15:34
1  
... every class has a parent class - except for java.lang.Object ... – Andreas_D May 23 '11 at 15:38
Sorry i edited the question slightly. The idea is to ask if there was a technique to keep traversing "upwards" eventually to the Object and printing attributes belonging to each class along the way. – Chin Boon May 23 '11 at 15:38
2  
@Chin, there is indeed a technique for this, it is called a loop ;-) Honestly, the accepted answer to your previous question shows you how to get the direct superclass of a class, and that's all you need to solve this problem. – Péter Török May 23 '11 at 15:41
@Peter - a loop? Looks more like a job for Mr. Recursion ;) – Andreas_D May 23 '11 at 15:45
show 1 more comment

marked as duplicate by Matt Ball, Michael Borgwardt, NPE, Stephen C, Péter Török May 23 '11 at 15:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

Use this:

Class<?> superClass = MyClass.class.getSuperClass();

All superclasses:

public static void printSuperClass(Class<?> clazz) {
  if (clazz == null) return;

  Class<?> superclass = clazz.getSuperClass();
  System.out.println(clazz.getName() + " extends " + superclass.getName());
  printSuperClass(superclass);
}
share|improve this answer

You can use a for loop to walk up the parent classes.

for(Class clazz=object.getClass(); clazz!=null; clazz=clazz.getSuperClass())
    System.out.println(clazz);

Note: Object, primitives, interfaces and array's all have null as a superclass.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.