object类
Posted leo9257
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了object类相关的知识,希望对你有一定的参考价值。
java.lang.Object
类 Object
是类层次结构的根类。每个类都使用 Object
作为超类。所有对象(包括数组)都实现这个类的方法。
1.object部分方法简介
1>public boolean equals(Object obj)
指示其他某个对象是否与此对象“相等”。
2>protected void finalize()
throws Throwable
当垃圾回收器确定不存在对该对象的更多引用时,由对象的垃圾回收器调用此方法。
子类重写finalize
方法,以配置系统资源或执行其他清除。
3>public int hashCode()
返回该对象的哈希码值。
eg:StringBuffer leo9257 = new StringBuffer("nanjing...guiyang2009");
System.out.println(leo9257.hashCode());//366712642
4>public String toString()
class Student{ } public class Object { public static void main(String[] args) { Student a = new Student(); System.out.println(a);//[email protected] System.out.println(a.hashCode());//366712642 System.out.println(a.toString());//[email protected]
以上是关于object类的主要内容,如果未能解决你的问题,请参考以下文章
如何将这个 Objective-C 代码片段写入 Swift?
Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段