继承 继承的本质是对某一批类的抽象,从而实现对世界更好的建模 extend的意思是"扩展",子类是父类的扩展. Java中类只有单继承,没有多继承:儿子只能有一个亲生爸爸,一个爸爸可以有多个儿子 继承是类与类之间的一种关系.除此之外还有依赖,组合,聚合等 继承关系的两个类,一个为子类(派生类),一个为父类(基类).子类继承父类使用关键字extend public class Person { // public>protected>default>private pr…
一.super关键字: 在对象的内部使用,可代表父类对象. 1. 访问父类的属性:super.age 2. 访问父类的方法:super.eat() 例: package 关键字extends; public class Dog extends Animal{ int age=20; public void eat(){ System.out.println("狗具有吃东西的能力!"); } public Dog(){ System.out.println("子类执行了!&qu…
1.引用类型数组: 1) Cell[] cells = new Cell[4]; cells[0] = new Cell(2,5); cells[1] = new Cell(2,6); cells[2] = new Cell(2,7); cells[3] = new Cell(3,6); 2)Cell[] cells = new Cell[]{ new Cell(2,5), new Cell(2,6), new Cell(2,7), new Cell(3,6) }; 3) int[]…