Is there a preference or behavior difference between using:
if(obj.getClass().isArray()) {}
and
if(obj instanceof Object[]) {}
?
|
Is there a preference or behavior difference between using:
and
? |
|||
|
|
|
In general, use the At the JVM level, the The reflective approach ( There are two special cases: null references and references to primitive arrays. A null reference will cause Applied to a primitive array, the |
|||||||||||||||||||
|
|
In the latter case, if obj is null you won't get a NullPointerException but a false. |
||||
|
|
|
I recently ran into an issue upgrading a Groovy application from JDK 5 to JDK 6. Using
Changing to |
||||
|
|
|
So much that using |
|||||
|
|
If you ever have a choice between a reflective solution and a non-reflective solution, never pick the reflective one (involving Class objects). It's not that it's "Wrong" or anything, but anything involving reflection is generally less obvious and less clear. |
|||
|
|
If |
|||
|
|
|
Java array reflection is for cases where you don't have an instance of the Class available to do "instanceof" on. For example, if you're writing some sort of injection framework, that injects values into a new instance of a class, such as JPA does, then you need to use the isArray() functionality. I blogged about this earlier in December. http://blog.adamsbros.org/2010/12/08/java-array-reflection/ |
|||
|
|
|
There is no difference in behavior that I can find between the two (other than the obvious null-case). As for which version to prefer, I would go with the second. It is the standard way of doing this in Java. If it confuses readers of your code (because |
|||
|
|