Java中的this和super关键字

一、this

理解为一个变量,表示当前方法调用者的地址值

1、访问成员变量

        this.成员变量

2、访问成员方法

        this.成员方法(...)

3、访问构造方法

        this(...)

例:
public class Student{
    String name;
    int age;
    String school;

    public Student(){
        //表示调用本类其他构造方法
        //细节:虚拟机就不会再添加super();
        this(null,0,"牛马大学");   //默认学校为牛马大学
        this.method();            //调用成员方法
    }

    public Student(String name,int age,String school){
        this.name = name;
        this.age = age;
        this.school = school;
    }

    
    public void method(){
        System.out.println("成员方法");
    }

}

二、super

代表父类存储空间,也就是说去父类里寻找。

1、访问成员变量

        super.成员变量

2、访问成员方法

        super.成员方法(...)

3、访问构造方法

        super(...)

例:
public class Father{

    String name;

    public Father(){}

    public Father(String name){
        this.name = name;
    }

    public void method(){
        System.out.println("Father method ...");
    }

}

public class Son extends Father{
    
    String name;

    public Son(){}

    public Son(String name){
        super(name);      // 调用父类构造方法
    }

    @Override
    public void method(){
        System.out.println("Son method ...");
        super.method();                    // 调用父类的成员方法
        System.out.println(super.name);    // 调用父类的成员变量
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值