在JDK 源碼 Object.class 類的時候,講過 getClass() 方法、hashCode()方法、clone() 方法,其中方法簽名如下:
public final native Class<?> getClass();
public native int hashCode();
protected native Object clone() throws CloneNotSupportedException;
在JDK 源碼 Object.class 類的時候,講過 getClass() 方法、hashCode()方法、clone() 方法,其中方法簽名如下:
public final native Class<?> getClass();
public native int hashCode();
protected native Object clone() throws CloneNotSupportedException;