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 new to java. Please let me know how to verify if variable type is an array in Java languge.

share|improve this question

2 Answers

up vote 7 down vote accepted

With any object, you can do this:

Class clazz = myObject.getClass();

if( clazz.isArray() ) {
    // ... array specific stuff.
}
share|improve this answer
Thnaks! worked :) – Annibigi Aug 21 '10 at 4:48
3  
Nothing says thank you like accepting the answer. :-) – Shawn D. Aug 21 '10 at 5:19

Any type that is suffixed by [] is an array type.

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.