访问类中的属性,前面必须加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;
}
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦