(Class elementType, int length)
| 97 | public static native int getLength(Object array); |
| 98 | |
| 99 | private static native Object makeObjectArray(Class elementType, int length); |
| 100 | |
| 101 | public static Object newInstance(Class elementType, int length) { |
| 102 | if (length < 0) { |