摘要:
多态 package com.zishi.oop.demo06;public class Application { public static void main(String[] args) { //一个对象的实际类型是确定的 //new Student(); //new Person(); 阅读全文
摘要:
方法的重写 重写:需要有继承关系,子类重写父类的方法! 1.方法名必须相同 2.参数列表列表必囿相同 3.修饰符:范围可叮以扩大但不能缩小:public>Protected>Default>private 4.抛出的异常:范围.可以被缩小,但不能扩大: ClassNotFoundException 阅读全文
摘要:
super详解 1.super与this 的区别: ```javapackage com.zishi.oop.demo05; public class Application { public static void main(String[] args) { // Student student 阅读全文
摘要:
继承 ```javapackage com.zishi.oop.demo05; public class Application { public static void main(String[] args) { Student student = new Student(); student.s 阅读全文
摘要:
封装 package com.zishi.oop.demo04;public class Application { /* 1.提高程序的安全性,保护数据 2.隐藏代码的实现细节 3,统一接口 4,增加了系统的可维护能力 */ public static void main(String[] 阅读全文
摘要:
简单小结类与对象 1.类与对象 类是一个模板:抽象, 对象是一个具体的实例 2.方法 定义、调用 3.对象的引用 引用类型: 八大基本类型 对象是通过引用来操作的: 栈 >堆 4.属性:字段Field 成员变量 默认初始化: 数字: 0 0.0 char: u0000 boolean: false 阅读全文
摘要:
创建对象的内存分析 package com.zishi.oop.demo03; import com.zishi.oop.demo03.Pet;public class Application { public static void main(String[] args) { Pet dog 阅读全文