In the Object.class file in JDK 7 I see the following snippet
public class Object {
private static native void registerNatives();
static {
registerNatives();
}
two questions:
- Ok where is the actual implementation of this method? the method has no body.
- The method is already set as static. So why is that static block needed again right below it?