jdk提供的一个类,是所有类的父类,再java.lang中
Object类中定义了很多方法
- hashcode():返回对象的散列码
- toString():以字符串的形式返回某个类的实例化对象的信息
- getClass()
- equals()
- clone()
- notify()
- notifyAll()
- wait()
toString():
public String toString() {
return getClass().getName() + "@" + Integer.toHexString(hashCode());
}
equals():比较内存地址
public boolean equals(Object obj) {
return (this == obj);
}
hashCode(): 内存地址结合对象信息得到的散列值
public native int hashCode();
标签:Java,Object,equals,hashCode,toString,public
From: https://www.cnblogs.com/antidogmatist/p/16984100.html