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

I was wondering if a method within an abstract class could get information about the instantiating class, for example, the number of constructor methods and the types of arguments they take.

Further, I was wondering if it'd be possible to know which one of the above was called for the particular instantiation.

Thanks

share|improve this question

5 Answers

up vote 2 down vote accepted

I think you can.

package test;

public abstract class AbstractClass {

    public abstract String something();

    public void printConstructorsOfInstantiatingClass() {
        System.out.println(getClass().getDeclaredConstructors());
    }
}

package test;

public class ConcreteClass extends AbstractClass {
    @Override
    public String something() {
        return "concreteSomething";
    }
}

package test;

public class TestMain {
    public static void main(String[] args) {
        ConcreteClass cc = new ConcreteClass();
        cc.printConstructorsOfInstantiatingClass();
    }
}

same works with getDeclaredMethods and other methods concerning reflection.

share|improve this answer

I haven't tested this, but I believe that if you implement the reflection code in the abstract class, in runtime you'll get the info of the actual Class that extends your abstract (if you use something like this.getClass()... etc).

As to which constructor was called, I don't believe it's possible using reflection only, since after the object was created, there is no record of what method was called before.

share|improve this answer

As already answered, getClass() will return the concrete class and is what you are looking for.

As to which constructor is being called, your best bet is to throw an exception, catch it, and then walk up the stack frames until you find the constructor call you are looking for. Not too clean, but I think this is the best you can do.

share|improve this answer

I believe you can use getClass().getEnclosingClass() to get the parent class if the current class is anonymous or nested. If that doesn't work, try getClass().getDeclaringClass().

Use getConstructors() to find the constructors of the declaring class. I don't think there is any way to determine which constructor was invoked to instantiate the declaring class... unless your code is run during the constructor of the declaring class, in which case you can throw an Exception as @AndrewEisenberg mentioned in his reply.

share|improve this answer

yep getClass() returns the class object of the instance with everything you need

for example getClass().getConstructors() returns a array of constructor objects which you can call

however it is impossible to know which one is invoked for a particular object unless you know more about the code inside the constructors

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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