JAVA——super关键字的解惑及使用

2019-06-25  本文已影响0人  BeaconCao

1. 什么是super?

super代表的是当前子类对象中的父类型特征。

2. 什么时候用到super?

3. 例1

//创建一个Animal类用于继承
class Animal {
    public String name = "动物";
    public void eat() {                
        System.out.println("吃饭");
    }
    public void sleep() {            
        System.out.println("睡觉");
    }
}



//创建一个Dog类继承Animal
class Dog extends Animal {

    public String name = "旺财";
    public void eat() {                
        System.out.println("吃狗粮");//狗喜欢吃狗粮
    }
    public void m1(){
        System.out.println(super.name);//调用父类中的name变量
        System.out.println(this.name);//可以不加this,系统默认调用子类自己的name
        super.eat();//调用父类中的eat方法
        this.eat();
        //eat();
    }
}



//测试类
public class AnimalTest01 {
    public static void main(String[] args) {
        Dog d = new Dog();
        d.m1();
    }
}

4. 例2

class Animal {
    //颜色
    String color;
    //品种
    String category;
    public Animal(){
        System.out.println("Animal中的构造方法");
    }
    public Animal(String color,String category){
        this.color = color;
        this.category = category;
    }
}



class Dog extends Animal {
    public Dog(){
        super("土豪金","藏獒");//手动调用父类中的有参构造方法给成员变量进行赋值
        System.out.println("Dog中的构造方法");
    }
}


//测试类
public class Test {
    public static void main(String[] args) {
        Dog d = new Dog();
        System.out.println(d.color);
        System.out.println(d.category);
    }
}

5. super和this的对比

上一篇下一篇

猜你喜欢

热点阅读