How do I check if an object given to me is an int[] in Java?
|
1
|
|
|
|
|
|
The way you'd expect:
Arrays are |
||||
|
|
|
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
|
||||||||
|
|
|
Arrays are Objects in java. |
||
|
|
|
|
intanceof is simplest but to do literally what you ask.
|
||||
|
