标签:oid oat 定义 vat this his 表示 this调用 price
1.使用this关键字调用本类中的属性。
例如:构造方法或者set方法
public class Book {
private String name;
private float price;
private Person person;
private Person child;
public Person getChild() {
return child;
}
public void setChild(Person child) {
this.child = child;//this.child表示本类中定义的属性,child表示方法传入的属性
}
public Book(String name, float price) {
super();
this.name = name;
this.price = price;
}
2.使用this调用构造方法
如果一个类中有多个构造方法,也可以利用this关键字互相调用。
3.this表示当前对象
在java中当前对象就是指当前正在调用类中方法的对象。
标签:oid oat 定义 vat this his 表示 this调用 price
原文地址:https://www.cnblogs.com/wangffeng293/p/14490046.html