this关键字

this关键字

  • *this是一个变量

  • *this是一个引用

  • *this变量中保存了指向自身的内存地址,this存储在JVM堆内存的Java对象内部。【关于JVM堆内存详见《JVM内存管理》】

  • *this可以出现在“实例方法”当中,this指向当前正在执行这个动作的对象。(this代表当前对象)

  • *this在多数情况下都是可以省略不写的

  • *this不能使用在带有static关键字的方法当中

  • *在带有static的方法当中不能“直接”访问实例变量和实例方法,因为实例变量和实例方法都需要对象的存在,而static的方法当中是没有this的,也就是当前对象不存在。

  • *用来区分实例变量和局部变量的时候this不能省略

    例:
    public void setAge(int age){
    this.age = age;
    }
    //this.age是实例变量
    //age是局部变量age

*总结:this可以使用在哪里
-可以使用在实例方法当中,代表当前对象【语法格式:this.】
-可以使用在构造方法当中,通过当前的构造方法调用其他的构造方法【语法格式:this(实参)】

	使用示例:
//以前没见到过的this使用形式
public class ThisTest01 {
	
	public static void main(String [] args) {
		Date d1 = new Date();
		Date d2 = new Date(2000, 02, 06);
		
		System.out.println(d1.getYear() + "年" + d1.getMonth() + "月" + d1.getDay() + "日");
		System.out.println(d2.getYear() + "年" + d2.getMonth() + "月" + d2.getDay() + "日");

	}

}

class Date{
	private int year;
	private int month;
	private int day;
	
	//使用方式1:
	public Date() {
		/*this.year = 1999;
		this.month = 01;
		this.day = 01;
		*/
		
		//以上代碼可以通過調用另一個構造方法來實現
		//採用以下方式不會創建新的Java對象,但同時又可以達到調用其他的構造方法
		this(1999, 01, 01);//注意:这个语句只能出现在第一行
	}
	
	//使用方式2:
	public Date(int year, int month, int day) {
		this.year = year;
		this.month = month;
		this.day = day;
	}
	
	public int getYear() {
		return year;
	}
	
	public int getMonth() {
		return month;
	}
	
	public int getDay() {
		return day;
	}
}
  重点:this()这种形式只能出现在构造函数的第一行。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值