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()方法经常在子类中重写。
时间: 2024-12-15 01:55:46