Object常用方法

2018-08-21  本文已影响0人  小绵羊你毛不多
public class Object {
    public Object() {
    }

    private static native void registerNatives();

    public final native Class<?> getClass();
//下面讲解一下 这两个
    public native int hashCode();
    //这里可以看到  是对地址进行的比较,但是String Integer Math等进行了重写 是比较的内容
    public boolean equals(Object var1) {
        return this == var1;
    }
//是深复制 
    protected native Object clone() throws CloneNotSupportedException;

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

    public final native void notify();

    public final native void notifyAll();


//被调用之后,线程会一直等待,知道本对象调用notify或者notifyAll

    public final native void wait(long var1) throws InterruptedException;
//调用之后,当等待时间结束或者被唤醒时会结束等待
    public final void wait(long var1, int var3) throws InterruptedException {
        ……
    }
    public final void wait() throws InterruptedException {
        this.wait(0L);
    }

    protected void finalize() throws Throwable {
    }

    static {
        registerNatives();
    }
}

hashcode equals

浅复制 只是复制了引用 指向同一个对象

Person p = new Person(23, "zhang");
        Person p1 = p;
        
        System.out.println(p);
        System.out.println(p1);
result
*.Person@2f9ee1ac
*.Person@2f9ee1ac

深复制 复制了一个新的对象

Person p = new Person(23, "zhang");
        Person p1 = (Person) p.clone();
Result
.Person@2f9ee1ac
.Person@.Person@2f9ee1ac
上一篇 下一篇

猜你喜欢

热点阅读