class Dog{
String name;
int age;
int weight;
void show() {
System.out.println(this.name + "发出叫声");
}
void bark(){
System.out.println(this.name+"汪汪叫");
}
}
class Bird{
String name;
int age;
int weight;
void show(){
System.out.println(this.name+"发出叫声");
}
void fly(){
System.out.println(this.name+"飞起来了");
}
}
可以看到,上面两个类有许多相同的成员变量和成员方法,这是它们的共性,为了提高代码的简洁性,我们可以把这些共性抽取出来,因此java提出了继承的概念,专门用来进行共性的抽取,实现代码的复用。
上述图片中,Dog和Bird类保留类父类的特性,并且增加了自己的特性,这就是继承,继承之后,子类可以使用父类的成员方法/成员变量/构造方法。
Java中是通过extends关键字来实现继承的,即
修饰符 class 子类 extends 父类{
//......
}
我们再对上面Dog和Bird类实现继承,使他们继承同一个类Animal
public class Test{
public static void main(String[]args){
}
}
class Animal{
String name;
int age;
int weight;
void show() {
System.out.println(this.name + "发出叫声");
}
}
class Dog extends Animal{
public Dog(String name,int age,int weight) {
this.name=name;
this.age=age;
this.weight=weight;
}//Dog类具有Animal类的属性和方法
void bark(){
System.out.println(this.name+"汪汪叫");
}
}
class Bird extends Animal{
void fly(){
System.out.println(this.name+"飞起来了");
}
}
!!!:
<1>父类的成员变量或成员方法会继承到子类中
<2>子类必须有特有的成员变量或成员方法,否则没有必要使用继承
public class Test{
public static void main(String[]args){
B b=new B();
b.show();
}
}
class A{
int a=1;
int b=2;
}
class B extends A{
int c=3;
public void show(){
System.out.println(this.a+" "+this.b+" "+this.c);
}
}//输出结果:1 2 3 ,此时a和b访问的时父类的成员变量a,b;c访问的时本类成员变量c
public class Test{
public static void main(String[]args){
B b=new B();
b.show();
}
}
class A{
int a=1;
int b=2;
}
class B extends A{
int b=3;
public void show(){
System.out.println(this.a+" "+this.b);
}
}//输出结果:1 3 ,此时a访问的时父类的成员变量a;b访问的时本类成员变量b
因此我们得出:
public class Test{
public static void main(String[]args){
B b=new B();
b.showA();//访问A的show方法
b.showB();//访问B的show方法
}
}
class A{
public void showA(){
System.out.println("哈哈哈");
}
}
class B extends A{
public void showB(){
System.out.println("呵呵");
}
}
public class Test{
public static void main(String[]args){
B b=new B();
b.func(1,2);//访问A的func
b.func(1);//访问B的func
b.show();//访问B的show方法
}
}
class A{
int a;
int b;
public void show(){
System.out.println("哈哈哈");
}
public void func(int a,int b){
System.out.println(a+b);
}
}
class B extends A{
public void show(){
System.out.println("呵呵");
}
public void func(int a){
System.out.println(a);
}
}
因此,我们得出:
对于上面子类和父类的成员变量/方法相同时,我们要想访问父类的成员变量/方法,就需要借助super关键字进行访问,它的作用是在子类中访问父类的成员变量或成员方法。
public class Base {
int a;
int b;
public void methodA(){
System.out.println("Base中的methodA()");
}
public void methodB(){
System.out.println("Base中的methodB()");
}
}
public class Derived extends Base {
int a; // 与父类中成员变量同名且类型相同
char b; // 与父类中成员变量同名但类型不同
// 与父类中methodA()构成重载
public void methodA(int a) {
System.out.println("Derived中的method()方法");
}
// 与基类中methodB()构成重写(即原型一致,重写后序详细介绍)
public void methodB() {
System.out.println("Derived中的methodB()方法");
}
public void methodC() {
// 对于同名的成员变量,直接访问时,访问的都是子类的
a = 100; // 等价于: this.a = 100;
b = 101; // 等价于: this.b = 101;
// 注意:this是当前对象的引用
// 访问父类的成员变量时,需要借助super关键字
// super是获取到子类对象中从基类继承下来的部分
super.a = 200;
super.b = 201;
// 父类和子类中构成重载的方法,直接可以通过参数列表区分清访问父类还是子类方法
methodA(); // 没有传参,访问父类中的methodA()
methodA(20); // 传递int参数,访问子类中的methodA(int)
// 如果在子类中要访问重写的基类方法,则需要借助super关键字
methodB(); // 直接访问,则永远访问到的都是子类中的methodA(),基类的无法访问到
super.methodB();//访问基类的methodB
}
}
看下一个知识点:子类构造方法
public class Test{
public static void main(String[] name){
Dog dog=new Dog("狗",18,234);
}
}
class Animal{
String name;
int age;
//!!!父类一旦写了构造方法,那么子类就必须先实现父类的构造方法,否则报错
public Animal(String name, int age) {
this.name = name;
this.age = age;
System.out.println("父类构造方法");
}
}
class Dog extends Animal{
int weight;
public Dog(String name, int age, int weight) {
super(name, age);//实现父类构造方法
//super关键字必须是子类构造方法的第一条语句
this.weight = weight;
System.out.println("子类构造方法");
}
void bark(){
System.out.println("汪汪叫");
}
}
//打印结果:
//父类构造方法
//子类构造方法
!!!构造子类对象时候 ,先要调用基类的构造方法,将从基类继承下来的成员构造完整,然后再调用子类自己的构造方法,将子类自己新增加的成员初始化完整。
public class Test{
public static void main(String[] name){
Dog dog=new Dog();
System.out.println("==========");
Dog dog2=new Dog();
}
}
class Animal{
static{
System.out.println("Animal的静态");
}
{
System.out.println("Animal的实例");
}
public Animal(){
System.out.println("Animal的构造");
}
}
class Dog extends Animal{
static{
System.out.println("Dog的静态");
}
{
System.out.println("Dog的实例");
}
public Dog(){
System.out.println("Dog的构造");
}
}
//执行结果
//Animal的静态
//Dog的静态
//Animal的实例
//Animal的构造
//Dog的实例
//Dog的构造
//==========
//Animal的实例
//Animal的构造
//Dog的实例
//Dog的构造
说明:
final修饰的变量相当于常量,不能被改变。
final修饰的类不能被继承。
final修饰的成员方法不能被重写(后面了解)
// 轮胎类
class Tire{
// ...
}
// 发动机类
class Engine{
// ...
}
// 车载系统类
class VehicleSystem{
// ...
}
class Car{
private Tire tire; // 可以复用轮胎中的属性和方法
private Engine engine; // 可以复用发动机中的属性和方法
private VehicleSystem vs; // 可以复用车载系统中的属性和方法
// ...
}
// 奔驰是汽车
class Benz extend Car{
// 将汽车中包含的:轮胎、发送机、车载系统全部继承下来
}