Java-Object类详解

时间:2021-09-26 01:07:07

本文介绍Object类

前言

Object介绍

Object类是Javajava.lang包下的核心类,Java 允许把任何类型的对象赋给 Object 类型的变量。当一个类被定义后,如果没有指定继承的父类,那么默认父类就是 Object 类。

Code

package java.lang;

import jdk.internal.vm.annotation.IntrinsicCandidate;
public class Object {

    /**
     * Constructs a new object.
     */
    @IntrinsicCandidate
    public Object() {}
    
	@IntrinsicCandidate
    public final native Class<?> getClass();

	@IntrinsicCandidate
    public native int hashCode();

	public boolean equals(Object obj) {
        return (this == obj);
    }

	@IntrinsicCandidate
    protected native Object clone() throws CloneNotSupportedException;

	public String toString() {
        return getClass().getName() + "@" + Integer.toHexString(hashCode());
    }

	@IntrinsicCandidate
    public final native void notify();

	@IntrinsicCandidate
    public final native void notifyAll();

	public final void wait() throws InterruptedException {
        wait(0L);
    }

	public final native void wait(long timeoutMillis) throws InterruptedException;

	public final void wait(long timeoutMillis, int nanos) throws InterruptedException {
        if (timeoutMillis < 0) {
            throw new IllegalArgumentException("timeoutMillis value is negative");
        }

        if (nanos < 0 || nanos > 999999) {
            throw new IllegalArgumentException(
                                "nanosecond timeout value out of range");
        }

        if (nanos > 0 && timeoutMillis < Long.MAX_VALUE) {
            timeoutMillis++;
        }

        wait(timeoutMillis);
    }

	@Deprecated(since="9")
    protected void finalize() throws Throwable { }

Object类中的方法

  • getClass():native方法,用于返回当前运行时对象的Class对象,使用了final关键字修饰,故不允许子类重写。
  • hashCode() :native方法,用于返回对象的哈希码,主要使用在哈希表中,比如JDK中的HashMap。
  • equals(Object obj):用于比较2个对象的内存地址是否相等,String类对该方法进行了重写用户比较字符串的值是否相等。
  • clone() :naitive方法,用于创建并返回当前对象的一份拷贝。一般情况下,对于任何对象 x,表达式 x.clone() != x 为true,x.clone().getClass() == x.getClass() 为true。Object本身没有实现Cloneable接口,所以不重写clone方法并且进行调用的话会发生CloneNotSupportedException异常。
  • toString():返回类的名字@实例的哈希码的16进制的字符串。建议Object所有的子类都重写这个方法。
  • notify():native方法,并且不能重写。唤醒一个在此对象监视器上等待的线程(监视器相当于就是锁的概念)。如果有多个线程在等待只会任意唤醒一个。
  • notifyAll():native方法,并且不能重写。跟notify一样,唯一的区别就是会唤醒在此对象监视器上等待的所有线程,而不是一个线程。
  • wait(long timeout) :native方法,并且不能重写。暂停线程的执行。注意:sleep方法没有释放锁,而wait方法释放了锁 。timeout是等待时间。
  • wait(long timeout, int nanos) :多了nanos参数,这个参数表示额外时间(以毫微秒为单位,范围是 0-999999)。 所以超时的时间还需要加上nanos毫秒。
  • wait() :跟之前的2个wait方法一样,只不过该方法一直等待,没有超时时间这个概念
  • finalize() :实例被垃圾回收器回收的时候触发的操作