java.lang.Object的常用方法有哪些

参考答案

java.lang.Object的常用方法:

  • public final native Class<?> getClass(); 获取类结构信息;
  • 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 让持有对象锁的线程进入等待,设置超时纳秒数时间;
  • protected void finalize() throws Throwable 垃圾回收前执行的方法;
  • public native int hashCode() 获取哈希码;
  • public boolean equals(Object) 默认比较对象的地址值是否相等,子类可以重写比较规则;
  • protected native Object clone() throws CloneNotSupportedException 用于对象克隆;
  • public String toString() 把对象转变成字符串;
  • public final native void notify() 多线程中唤醒功能。

 

以上,是Java面试题【java.lang.Object的常用方法有哪些】的参考答案。

输出,是最好的学习方法

欢迎在评论区留下你的问题、笔记或知识点补充~

—end—

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧