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