例如:
使用this
访问当前实例的属性x:
public class Main {
int x;
// 带参数的构造函数
public Main(int x) {
this.x = x;
}
// 调用
public static void main(String[] args) {
Main myObj = new Main(5);
System.out.println("Value of x = " + myObj.x);
}
}
1、定义和用法
this
关键字引用方法或构造函数中的当前对象。
this
也可以用于:
- 调用当前类的构造函数
- 调用当前类方法
- 返回当前的类对象
- 在方法调用中传递参数
- 在构造函数调用中传递参数