大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说Java中Object类常用的12个方法,你用过几个?[亲测有效],希望您对编程的造诣更进一步.
前言
1. getClass 方法
public final native Class<?> getClass();
2. hashCode 方法
public native int hashCode();
3. equals 方法
public boolean equals(Object obj) { return (this == obj);}
4. clone 方法
protected native Object clone() throws CloneNotSupportedException;
5. toString 方法
public String toString() {
return getClass().getName() + "@" + Integer.toHexString(hashCode());
}
6. notify 方法
public final native void notify();
7. notifyAll 方法
public final native void notifyAll();
8. wait(long timeout) 方法
public final native void wait(long timeout) throws InterruptedException;
9. wait(long timeout, int nanos) 方法
public final void wait(long timeout, int nanos) throws InterruptedException {
if (timeout < 0) {
throw new IllegalArgumentException("timeout value is negative");
}
if (nanos < 0 || nanos > 999999) {
throw new IllegalArgumentException(
"nanosecond timeout value out of range");
}
if (nanos >= 500000 || (nanos != 0 && timeout == 0)) {
timeout++;
}
wait(timeout);
}
1000000 * timeout + nanos
10. wait 方法
public final void wait() throws InterruptedException { wait(0);}
11. finalize 方法
protected void finalize() throws Throwable { }
最后
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/13875.html