摘要: package Demo.oop.APP.Demo05; public class application { public static void main(String[] args) { //一个对象的实际类型是确定的 //可以指向的引用的类型就不确定了:父类指向子类 //子类调用的只能是自己 阅读全文
posted @ 2022-05-22 23:31 回忆也交给时间 阅读(25) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP.Demo04; //启动器 public class application { public static void main(String[] args) { //方法的调用只和左边,定义的数据有关 A a=new A(); a.test(); //父类 阅读全文
posted @ 2022-05-18 22:02 回忆也交给时间 阅读(27) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP.Demo03; //demo3包的启动器 //此启动器用于继承 public class application { public static void main(String[] args) { Student student = new Student 阅读全文
posted @ 2022-05-17 22:59 回忆也交给时间 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP.Demo03; //demo3包的启动器 //此启动器用于继承 public class application { public static void main(String[] args) { Student s1 = new Student(); S 阅读全文
posted @ 2022-05-17 22:10 回忆也交给时间 阅读(12) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP; //一个项目通常只用一个启动器,也就是只有一个main方法 public class Application { public static void main(String[] args) { //类:抽象的需要实例化 //类实例化后会返回一个自己的对象 阅读全文
posted @ 2022-05-17 19:10 回忆也交给时间 阅读(38) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP;public class demo02 { /** * 类与对象小结 * 1.类与对象 * 类是一个模板,抽象,而对象是一个实例 * 2.方法:定义方法,可以以利用直接调用和,new关键字来调用 * 3.对应的引用 * 引用类型:基本类型 * 对象是通过引用 阅读全文
posted @ 2022-05-17 13:59 回忆也交给时间 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP; public class Pet { //public公用的,都可以调用 public String name; public int age; //无参构造 public void shout(){ System.out.println("叫了一声"); 阅读全文
posted @ 2022-05-17 13:28 回忆也交给时间 阅读(18) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop.APP; //一个项目通常只用一个启动器,也就是只有一个main方法 public class Application { public static void main(String[] args) { //类:抽象的需要实例化 //类实例化后会返回一个自己的对象 阅读全文
posted @ 2022-05-16 23:05 回忆也交给时间 阅读(13) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop; public class demo01 { public static void main(String[] args) { student.say();//静态方法 student student=new student();//非静态方法,当使用new方法时, 阅读全文
posted @ 2022-05-16 22:38 回忆也交给时间 阅读(24) 评论(0) 推荐(0) 编辑
摘要: package Demo.oop; public class demo01 { public static void main(String[] args) { student.say();//静态方法 student student=new student();//非静态方法,当使用new方法时, 阅读全文
posted @ 2022-05-16 22:15 回忆也交给时间 阅读(17) 评论(0) 推荐(0) 编辑