2023年6月8日

摘要: //Syudent4 /** Object类的finalize(完成)方法和Clone方法** protected void finalize()当垃圾收集确定不再有对该对象的引用时,垃圾收集器在对象上调用该对象。(垃圾回收器)* protected Object clone()创建并返回此对象的副 阅读全文
posted @ 2023-06-08 21:05 姜姜萸 阅读(24) 评论(0) 推荐(0) 编辑
 
摘要: //Student3类public class Student3 { private String name; private int age; public Student3() { super(); } public Student3(String name, int age) { this.n 阅读全文
posted @ 2023-06-08 20:25 姜姜萸 阅读(9) 评论(0) 推荐(0) 编辑
 
摘要: //Student2类/** 一般情况下toString方法堆我们来说没有什么用,所以要重写toString方法* Alt+enter* Alt+insert* */public class Student2 extends Object{ private String name; private 阅读全文
posted @ 2023-06-08 20:21 姜姜萸 阅读(7) 评论(0) 推荐(0) 编辑
 
摘要: //Student类 /* * public int hashCode()返回对象的哈希码值。 * public final 类 getClass()返回此Object的运行时类。 * public String toString()返回对象的字符串表示形式。 * ctrl + 左键查看源码 ecl 阅读全文
posted @ 2023-06-08 20:16 姜姜萸 阅读(12) 评论(0) 推荐(0) 编辑