可以使用this的地方 this不能用于静态方法和静态块main方法也是静态的,所以this也不能用于main方法 public class Person{ String name; int age; public static void main(String[] args) { this.name="小妮子"; //报错 this.age=20; //报错 }} 可以使用this的地方 构造函数实例方法 没有static修饰的方法