1. this 关键字:
this 关键字指向当前对象,主要用于:
- 区分局部变量和成员变量
- 调用当前类的其他构造方法
- 返回当前对象
示例代码:
public class ThisExample {
private int number;
// 构造方法
public ThisExample(int number) {
// 使用 this 区分局部变量和成员变量
this.number = number;
}
// 另一个构造方法
public ThisExample() {
// 使用 this() 调用其他构造方法
this(0);
}
public void setNumber(int number) {
this.number = number;
}
public ThisExample getThis() {
// 返回当前对象
return this;
}
}
2. super 关键字:
super 关键字用于引用父类的成员,主要用于:
- 调用父类的构造方法
- 访问父类的成员变量
- 调用父类的方法
示例代码:
class Parent {
protected int value = 10;
public Parent() {
System.out.println("Parent constructor");
}
public void display() {
System.out.println("Parent's value: " + value);
}
}
class Child extends Parent {
private int value = 20;
public Child() {
// 调用父类的构造方法
super();
System.out.println("Child constructor");
}
@Override
public void display() {
// 调用父类的方法
super.display();
System.out.println("Child's value: " + value);
// 访问父类的成员变量
System.out.println("Parent's value: " + super.value);
}
}
3. this() 和 super() 的使用:
class GrandParent {
public GrandParent() {
System.out.println("GrandParent constructor");
}
}
class Parent extends GrandParent {
public Parent() {
// 如果不显式调用 super(),Java 会自动调用父类的无参构造方法
System.out.println("Parent constructor");
}
public Parent(int value) {
// 显式调用父类的构造方法
super();
System.out.println("Parent constructor with value: " + value);
}
}
class Child extends Parent {
public Child() {
// 调用本类的其他构造方法
this(0);
System.out.println("Child constructor");
}
public Child(int value) {
// 调用父类的构造方法
super(value);
System.out.println("Child constructor with value: " + value);
}
}
注意事项:
- this() 和 super() 必须位于构造方法的第一行。
- 不能在同一个构造方法中同时使用 this() 和 super()。
- 在静态方法或静态初始化块中不能使用 this 和 super。
public class StaticExample {
// 错误:不能在静态上下文中使用 this
private static int staticValue = this.getValue();
// 错误:不能在静态方法中使用 this
public static void staticMethod() {
System.out.println(this.toString());
}
public int getValue() {
return 0;
}
}
4. this() 和 super() 的区别:
- super: 它引用当前对象的直接父类中的成员(用来访问直接父类中被隐藏的父类中成员数据或函数,基类与派生类中有相同成员定义时如:super.变量名 super.成员函数据名(实参)
- this:它代表当前对象名(在程序中易产生二义性之处,应使用this来指明当前对象;如果函数的形参与类中的成员数据同名,这时需用this来指明成员变量名)
- super()和this()类似,区别是,super()在子类中调用父类的构造方法,this()在本类内调用本类的其它构造方法。
- super()和this()均需放在构造方法内第一行。
- 尽管可以用this调用一个构造器,但却不能调用两个。
- this和super不能同时出现在一个构造函数里面,因为this必然会调用其它的构造函数,其它的构造函数必然也会有super语句的存在,所以在同一个构造函数里面有相同的语句,就失去了语句的意义,编译器也不会通过。
- this()和super()都指的是对象,所以,均不可以在static环境中使用。包括: static变量,static方法,static语句块。
- 从本质上讲,this是一个指向本对象的指针, 然而super是一个Java关键字。