In Java, an array IS AN Object. My question is... is an Object constructor called when new arrays is being created? We would like to use this fact to instrument Object constructor with some extra bytecode which checks length of array being constructed. Would that work?
|
|
|
|
|
|
|
Per the JVM spec: "Arrays are created and manipulated using a distinct set of instructions." So, while arrays are instances of Objects, they aren't initialized the same way that other objects are (which you can see if you scroll up from that link anchor). |
||
|
|
|
Nope. I found this on the AspectJ mailing list: . You probably ask about arrays for a reason, but if you can, why not switch to the collection classes. That will give you lots of opportunity to intercept and do validations. |
||
|
|
|
You can use byte code manipulation to place the check where ever a new array is created. |
||
|
|
|
I don't think so because you can not derive a native array to overridethe constructor |
||
|
