在java.lang包下 Object类:是所有类的基类(父类) public final native Class<?> getClass(); 返回这个Object所代表的的运行时类 public native int hashCode();//返回对象hash code 值 如果是两个相同(指用=比较都为true的)的对象调用这个方法,会返回相同的Integer类型的hash码: 如果是两个不相同(指用=比较都为false的)的对象调用这个方法,会返回不同的Integer类型的hash码…
native 关键字 private static native void registerNatives(); static { registerNatives(); } public final native Class<?> getClass(); public native int hashCode(); protected native Object clone() throws CloneNotSupportedException; public final native void…