Possible Duplicate:
Source code for java array
There is a Java source file for java.lang.Object in the OpenJDK, which surprised me a bit, but I thought it was pretty interesting.
That got me wondering whether there is a source file for arrays (which after all are types of Object). Or is their behaviour hard-wired into the JVM somehow?
If such a thing existed, I would expect a lot of the methods to be native as I'm not sure how you could make it without being completely self-referential. But I'm curious as to whether it even exists.
int a = new int[3]; Class c = a.getClass();doesn't work? clearly you can. an array is certainly controlled by a java class. – MeBigFatGuy Apr 28 '11 at 17:34