码迷,mamicode.com
首页 > 其他好文 > 详细

THIS关键字

时间:2021-03-06 14:59:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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中当前对象就是指当前正在调用类中方法的对象。

THIS关键字

标签:oid   oat   定义   vat   this   his   表示   this调用   price   

原文地址:https://www.cnblogs.com/wangffeng293/p/14490046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!