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

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)

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

2 Answers

up vote 77 down vote accepted

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

This link should help.

 Modifier.isAbstract( someClass.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()

share|improve this answer
Thanks! One little note: You can't use "class" as a variable name, maybe you want to change your example. – Tim Büthe Nov 24 '10 at 17:07
@Tim: d'oh...thanks. – seth Dec 2 '10 at 4:43
sweet tip seth~ – sova Dec 2 '10 at 5:18
Class myClass = myJar.load("classname");
bool test = Modifier.isAbstract(myClass.getModifiers());
share|improve this answer
Also, what seth said. :) – Stobor Jul 2 '09 at 7:04
Great minds think alike. – seth Jul 2 '09 at 7:09
1  
just to check, that should be "Modifier" – peter.murray.rust Jul 2 '09 at 7:24

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.