vote up 1 vote down star

I am interating through classes in a Jar file and wish to find those which are not abstract. I can solve this by instantiating the classes and trapping InstantiationException but that has a performance hit as some classes have heavy startup. I can't find anything obviously like isAbstract() in the Class.java docs. (many thanks for the rapid replies I got last time)

flag

Many thanks to both of you for the very rapid answer - it's not intuitive! – peter.murray.rust Jul 2 at 7:19

2 Answers

vote up 6 vote down check

It'll have abstract as one of its modifiers when you call getModifiers() on the class object.

This link should help.

 Modifier.isAbstract( class.getModifiers() );

Also:

http://java.sun.com/javase/6/docs/api/java/lang/reflect/Modifier.html

http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getModifiers()

link|flag
vote up 3 vote down
Class myClass = myJar.load("classname");
bool test = Modifiers.isAbstract(myClass.getModifiers());
link|flag
Also, what seth said. :) – Stobor Jul 2 at 7:04
Great minds think alike. – seth Jul 2 at 7:09
just to check, that should be "Modifier" – peter.murray.rust Jul 2 at 7:24

Your Answer

Get an OpenID
or

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