this关键字是什么:
1.出现在构造器和成员方法中,代表对象的地址
this关键字在构造器中、成员方法中可以做什么:
1.可以用于指定访问当前对象的成员
/*this
表示当前对象
*/
public class Car {
String name;
public Car(String name) {
this.name=name;
System.out.println("这是有参数构造器" + this);
}
public void run() {
System.out.println("这是方法中的" + this);
}
/*
*/
public void goWith(String name) {
System.out.println(this.name + "正在和" + name + "比赛");
}
}
public class test {
public static void main(String[] args) {
Car car = new Car("宝马");
car.run();
car.goWith("奔驰");
}
}