访问类中的属性,前面必须加this
不加this,他会把最近的大括号里面的属性当做是要用的属性,造成传值错误,很难找到错误所在。
private String title
private double price
pbulic 类名(String title,double price){
this.title=title;//this用this表示title是定义的属性,不是形式参数
this.price=price;
}
public String getInfo(){
return "书名"+this.title+“,价格”+this.price;
}