up vote 4 down vote favorite
1
share [g+] share [fb]

How do I check if an object given to me is an int[] in Java?

link|improve this question
feedback

4 Answers

up vote 22 down vote accepted

The way you'd expect:

if (theObject instanceof int[]) {
    // use it!
}

Arrays are Objects, even if they're arrays of primitives.

link|improve this answer
1  
Yep. That's the way to do it. I knew there was a better way than my answer. – MBCook Apr 23 '09 at 19:22
feedback
if (o instanceof int[])
{
...
}

Arrays are Objects in java.

link|improve this answer
feedback

Get the runtime class of the variable if its a single dimension array the class name is like [int if it is a 2 dimensional array the class name is [[int and if it's a 3 dimensional class name is [[[int

if ( j.class.Name.equals("[int")) {
   ......
}
link|improve this answer
Reflection would also work, but the question didn't mention multidimensional arrays. – Michael Myers Apr 23 '09 at 19:25
That should be j.getClass().getName(), not j.class.Name. – Michael Myers Apr 23 '09 at 19:29
j.class would work in Java 6 as well and if it's not then the point is however communicated well. However the instanceof would be better because I think it's deduced at compile time with out a call to a class method. However for the sake of providing a different proposition I'm adding this. – S M Kamran Apr 23 '09 at 19:32
I downloaded Java 6 specifically to test this, and it doesn't seem to work. "class" does not seem to be a member accessible from an instance, at least not in JDK1.6.0_13 – skiphoppy Apr 23 '09 at 21:15
feedback

intanceof is simplest but to do literally what you ask.

if (o.getClass() == int[].class)
link|improve this answer
2  
important to note: instanceof will not throw a NullPointerException if o is null, but this will – Kip Apr 23 '09 at 19:49
feedback

Your Answer

 
or
required, but never shown