this和super关键字在Java中有什么作用?

this和super关键字在Java中有什么作用



前言

this 和 super 是 Java 中的两个关键字,它们在面向对象编程中起着重要的作用。它们用于引用当前对象或其父类对象。


一、this 关键字

this 关键字用于引用当前对象。它的主要用途有以下几点:

  1. 引用当前对象的属性:当方法的参数或局部变量与类的成员变量重名时,可以使用 this 来区分它们。
public class MyClass {  
    int value;  
  
    public void setValue(int value) {  
        this.value = value; // 使用 this 引用当前对象的 value 属性  
    }  
  
    public int getValue() {  
        return this.value; // 使用 this 引用当前对象的 value 属性  
    }  
}
  1. 在构造器中调用另一个构造器:一个构造器可以使用 this() 来调用另一个构造器。
public class MyClass {  
    int x, y;  
  
    public MyClass() {  
        this(1, 2); // 调用带有两个参数的构造器  
    }  
  
    public MyClass(int x, int y) {  
        this.x = x;  
        this.y = y;  
    }  
}
  1. 在方法中引用当前对象本身:在某些情况下,你可能需要引用当前对象本身,例如在某些设计模式或事件处理中。
public class MyClass {  
    public void doSomething() {  
        MyClass obj = this; // 将当前对象引用赋值给另一个变量  
        // ... 使用 obj 进行操作 ...  
    }  
}

二、super 关键字

super 关键字用于引用父类对象。它的主要用途有以下几点:

  1. 调用父类的构造器:子类构造器可以使用 super() 来调用父类的构造器。
class Parent {  
    public Parent() {  
        System.out.println("Parent constructor called");  
    }  
}  
  
class Child extends Parent {  
    public Child() {  
        super(); // 调用父类的构造器  
        System.out.println("Child constructor called");  
    }  
}  
  
public class Main {  
    public static void main(String[] args) {  
        Child child = new Child(); // 输出: Parent constructor called, Child constructor called  
    }  
}
  1. 访问父类的属性或方法:当子类与父类有同名的属性或方法时,可以使用 super 来引用父类的属性或方法。
class Parent {  
    int value = 10;  
  
    public void showValue() {  
        System.out.println("Parent value: " + value);  
    }  
}  
  
class Child extends Parent {  
    int value = 20;  
  
    public void showValue() {  
        super.showValue(); // 调用父类的 showValue 方法  
        System.out.println("Child value: " + this.value); // 使用 this 引用子类的 value 属性  
    }  
}  
  
public class Main {  
    public static void main(String[] args) {  
        Child child = new Child();  
        child.showValue(); // 输出: Parent value: 10, Child value: 20  
    }  
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Jz_Stu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值