面对对象-继承-Object类
Posted 大技霸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面对对象-继承-Object类相关的知识,希望对你有一定的参考价值。
java.lang.Object类:所有类的基类
一个类如果没有显式使用extends继承其他类,这个类继承了Object类,在任何类的对象中使用Object中的方法
public class Student{ } public class Student extends Object{ }
常用的方法:
getClass() 返回此 Object 的运行时类。主要用于反射机制。
toString() 返回该对象的字符串表示。如果使用System.out.println(stu);默认调用stu.toString()
[email protected]==》
cn.zzsxt.oop6.Student(包名.类名)[email protected]+16进制表示的hashcode码
toString()方法经常在子类中重写。
以上是关于面对对象-继承-Object类的主要内容,如果未能解决你的问题,请参考以下文章