Java Class - Object
Posted mature-mike
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java Class - Object相关的知识,希望对你有一定的参考价值。
Object 类是 Java 所有类的父类, 所有类默认都是继承这个类,不需要显示的指定 extends.
该类包含以下方法:
-
public final native Class<?> getClass()
-
public final native void notify()
-
public final native void notifyAll()
-
public final void wait() throws InterruptedException
-
public final native void wait(long timeout) throws InterruptedException
-
public final void wait(long timeout, int nanos) throws InterruptedException
-
public native int hashCode()
-
public boolean equals(Object obj)
-
protected native Object clone() throws CloneNotSupportedException
-
protected void finalize() throws Throwable
其中有些方法被声明为final, 也就是说不能被覆写。 在实际的编程中,我们可能会根据需要覆写其他的方法,比如 hashcode 和equal 等方法。
1) getClass
-获取运行时对象的Class实例
2) wait
3) notify
4) equal
5) hashCode
6) clone
7) fanalize
以上是关于Java Class - Object的主要内容,如果未能解决你的问题,请参考以下文章