溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java中的this怎么用

發(fā)布時間:2020-06-26 14:26:38 來源:億速云 閱讀:159 作者:Leah 欄目:編程語言

這篇文章運用簡單易懂的例子給大家介紹java中的this怎么用,代碼非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

什么是this?

this是自身的一個對象,代表對象本身,可以理解為:指向?qū)ο蟊旧淼囊粋€指針。

用法如下:

用"this.成員變量名稱"和重名的局部變量區(qū)分開來;

用"this.成員方法名"訪問成員方法。

class Person{
	private String name;//成員變量
	private int age;
	Person(){}
	Person(String name){//局部變量
		this.name=name;//1.用"this.成員變量名稱"和重名的局部變量區(qū)分開來
	}
	Person(String name,int age){
		this(name);
		this.age=age;
	}
	String getInfo(){//成員方法
		return "姓名:" + name + "\n年齡:" + age;
	}
	void print(){
		System.out.println(this.getInfo());//2.用"this.成員方法名"訪問成員方法。
		System.out.println(getInfo());//這種情況this關(guān)鍵字一般不寫,讓編譯器自動添加。
	}
}
public class Test0505{
	public static void main(String[] args){
		Person p=new Person("張三",33);
		p.print();
	}
}

this()訪問構(gòu)造方法必須放在構(gòu)造方法的第一行

class Person{
	private String name;
	private int age;
	Person(){}
	Person(String name){//不含this()的構(gòu)造方法
		this.name=name;
	}
	Person(String name,int age){//在構(gòu)造方法內(nèi)調(diào)用另一個構(gòu)造方法
		this(name);//3."this();"訪問構(gòu)造方法必須放在構(gòu)造方法的第一行
		this.age=age;
	}
	String getInfo(){
		return "姓名:" + name + "\n年齡:" + age;
	}
	void print(){
		System.out.println(this.getInfo());
	}
}
public class Test0505{
	public static void main(String[] args){
		Person p=new Person("張三",33);
		p.print();
	}
}

返回對當前對象的引用

class Leaf{
	private int i=0;
	Leaf increment(){
		i++;
		return this;//4.返回對當前對象的引用。
	}
	void print(){
		System.out.println("i="+i);
	}
}
public class Test0505{
	public static void main(String[] args){
		Leaf x=new Leaf();
		x.increment().increment().increment().print();
	}
}

將對當前對象的引用作為參數(shù)傳遞給其他方法

class Person{
	void eat(Apple apple){
		Apple peeled=apple.getPeeled();
		System.out.println(peeled);
	}
}
class Apple{
	Apple getPeeled(){
		System.out.println(this);//輸出對當前對象的引用。
		return Peeler.peel(this);//5.將對當前對象的引用作為參數(shù)傳遞給其他方法。
	}
}
class Peeler{
	static Apple peel(Apple apple){
		return apple;
	}
}
public class Test0505{
	public static void main(String[] args){
		Apple a=new Apple();
		System.out.println(a);
		new Person().eat(a);
	}
}

關(guān)于java中的this怎么用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI