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

I'm trying to determine if a generic class object is an instance of an abstract class. So far I'm not having much luck. Below is the code I'm trying to use. AbstractActivity is the name of a parent class I extend some of my activities from.

public void startActivity(Intent intent)
{
    ComponentName name = intent.getComponent();

    if(name != null)
    {
        Class<?> cls = null;
        try {
            cls = Class.forName(name.getClassName());

            if(cls.isInstance(AbstractActivity));
            {
                //do something
            }
            else
            {
                super.startActivity(intent);
            }

        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    super.startActivity(intent);
}
share|improve this question
Nitpick - it can only be an instance of a non-abstract subclass of an abstract class. – Stephen C Dec 21 '10 at 3:00

2 Answers

up vote 10 down vote accepted

I would try:

if(AbstractActivity.class.isAssignableFrom(cls)) {
    ....
}
share|improve this answer

Here is my solution by reflection Find it's modifiers and go to the top (Object) if there is any abstract keyword return true; if not return false

@SuppressWarnings("rawtypes")
    public static boolean isAbstract(Object o) {
        Class c = o.getClass();
        while (!c.getSimpleName().equals("Object")) {

            if (Modifier.toString(c.getModifiers()).contains("abstract")) {
                return true;
            }

            c = c.getSuperclass();
        }

        return false;
    }
share|improve this answer
If you are going to browse through all it's ancestors, just compare c.getSuperclass with AbstractActivity.class. Your "abstract" modifier search would return true for any object subclassing any abstract class. – Kevin Gaudin Dec 21 '10 at 7:26
I just checked whether the given object is abstract or not – hilal Dec 21 '10 at 7:38
He wants to know if the class extends a specific abstract class. You haven't read the question. – EJP Dec 21 '10 at 23:14
yes it my fault – hilal Dec 22 '10 at 4:58

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.