摘要: 多态 package com.zishi.oop.demo06;​public class Application { public static void main(String[] args) {​ //一个对象的实际类型是确定的 //new Student(); //new Person(); 阅读全文
posted @ 2021-07-26 21:59 子时未临 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 方法的重写 重写:需要有继承关系,子类重写父类的方法! 1.方法名必须相同 2.参数列表列表必囿相同 3.修饰符:范围可叮以扩大但不能缩小:public>Protected>Default>private 4.抛出的异常:范围.可以被缩小,但不能扩大: ClassNotFoundException 阅读全文
posted @ 2021-07-26 19:05 子时未临 阅读(131) 评论(0) 推荐(0) 编辑
摘要: super详解 1.super与this 的区别: ```javapackage com.zishi.oop.demo05; public class Application { public static void main(String[] args) { // Student student 阅读全文
posted @ 2021-07-26 18:44 子时未临 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 继承 ```javapackage com.zishi.oop.demo05; public class Application { public static void main(String[] args) { Student student = new Student(); student.s 阅读全文
posted @ 2021-07-26 14:08 子时未临 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 封装 package com.zishi.oop.demo04;​public class Application {​ /* 1.提高程序的安全性,保护数据 2.隐藏代码的实现细节 3,统一接口 4,增加了系统的可维护能力​ */​ public static void main(String[] 阅读全文
posted @ 2021-07-26 13:43 子时未临 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 简单小结类与对象 1.类与对象 类是一个模板:抽象, 对象是一个具体的实例 2.方法 定义、调用 3.对象的引用 引用类型: 八大基本类型 对象是通过引用来操作的: 栈 >堆 4.属性:字段Field 成员变量 默认初始化: 数字: 0 0.0 char: u0000 boolean: false 阅读全文
posted @ 2021-07-26 13:12 子时未临 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 创建对象的内存分析 package com.zishi.oop.demo03; import com.zishi.oop.demo03.Pet;​public class Application { public static void main(String[] args) {​ Pet dog 阅读全文
posted @ 2021-07-26 12:55 子时未临 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 构造器 package com.zishi.oop.demo02;​//java--> classpublic class Person { //一个类即使什么都不写,也会存在一个方法(构造方法) /* 特点:1.必须和类的名字相同 2.必须没有返回值,没有void */​ //显示的定义构造器 S 阅读全文
posted @ 2021-07-25 23:58 子时未临 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 类与对象的创建 package com.zishi.oop.demo02;​public class Student {​ //属性:字段 String name; int age;​ //方法 public void study(){ System.out.println(this.name+"在 阅读全文
posted @ 2021-07-24 22:32 子时未临 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 回顾方法的调用 package com.zishi.oop.demo01;​//值传递public class Demo04 { public static void main(String[] args) { int a = 1; System.out.println(a); //1​ Demo0 阅读全文
posted @ 2021-07-24 00:14 子时未临 阅读(20) 评论(0) 推荐(0) 编辑