转载:object类的方法和涉及的相关知识

那么Object类有哪些方法呢:

private static native void registerNatives();这个方法主要是让c语言函数名与java方法名对应

public final native Class<?> getClass();   这个方法可以引出有关反射,类加载机制

public native int hashCode();   这里会引出hashmap实现原理

public boolean equals(Object obj)  这里会引出hashmap实现原理

protected native Object clone() throws CloneNotSupportedException;  这里会引出设计模式

 public String toString()

public final native void notify();   这里会引出线程通信

public final native void notifyAll();  这里会引出线程通信

 public final native void wait(long timeout) throws InterruptedException;  这里会引出线程通信

扫描二维码关注公众号,回复: 2556816 查看本文章

 public final void wait(long timeout, int nanos) throws InterruptedException  这里会引出线程通信

public final void wait() throws InterruptedException  这里会引出线程通信

protected void finalize() throws Throwable   这里会引出垃圾回收

猜你喜欢

转载自blog.csdn.net/zhanxiaoyier/article/details/81388698