vote up 4 vote down star
1

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

flag

4 Answers

vote up 22 vote down check

The way you'd expect:

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

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

link|flag
1  
Yep. That's the way to do it. I knew there was a better way than my answer. – MBCook Apr 23 at 19:22
vote up 0 vote down

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|flag
Reflection would also work, but the question didn't mention multidimensional arrays. – mmyers Apr 23 at 19:25
That should be j.getClass().getName(), not j.class.Name. – mmyers Apr 23 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 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 at 21:15
vote up 1 vote down
if (o instanceof int[])
{
...
}

Arrays are Objects in java.

link|flag
vote up 0 vote down

intanceof is simplest but to do literally what you ask.

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

Your Answer

Get an OpenID
or

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