java 中的this關鍵字的幾種用法

2021-08-30 02:45:02 字數 2193 閱讀 6169

當成員變數和區域性變數重名時,在方法中使用this時,表示的是該方法所在類中的成員變數。(this是當前物件自己)

public class hello 

public static void main(string args)

}

結果為:

s = helloworld!

1 -> this.s = hello

2 -> this.s = helloworld!

s=helloworld!

在這個例子中,建構函式hello中,引數s與類hello的成員變數s同名,這時如果直接對s進行操作則是對引數s進行操作。若要對類hello的成員變數s進行操作就應該用this進行引用。執行結果的第一行就是直接對建構函式中傳遞過來的引數s進行列印結果; 第二行是對成員變數s的列印;第三行是先對成員變數s賦傳過來的引數s值後再列印,所以結果是helloworld!而第四行是主函式中直接列印類中的成員變數的值,也可以驗證成員變數值的改變。

2.把自己當作引數傳遞時,也可以用this.(this作當前引數進行傳遞)

class a 

public void print()

}class b

public void print()

}public class helloa

}

結果為:

helloaa from a!

helloab from b!

helloaa from a!

helloaa from a!

helloab from b!

在這個例子中,物件a的建構函式中,用new b(this)把物件a自己作為引數傳遞給了物件b的建構函式。

3.有時候,我們會用到一些內部類和匿名類,如事件處理。當在匿名類中用this時,這個this則指的是匿名類或內部類本身。這時如果我們要使用外部類的方法和變數的話,則應該加上外部類的類名。如:

public class hellob  catch (interruptedexception ie) }}

}; // 注意這裡有分號

thread.start();

}public void run()

public static void main(string args) throws exception

}

在上面這個例子中, thread 是乙個匿名類物件,在它的定義中,它的 run 函式裡用到了外部類的 run 函式。這時由於函式同名,直接呼叫就不行了。這時有兩種辦法,一種就是把外部的 run 函式換乙個名字,但這種辦法對於乙個開發到中途的應用來說是不可取的。那麼就可以用這個例子中的辦法用外部類的類名加上 this 引用來說明要呼叫的是外部類的方法 run。

4. 在建構函式中,通過this可以呼叫同一類中別的建構函式。如:

public class thistest 

thistest()

public static void main(string args)

}

為了更確切的說明this用法,另外乙個例子為:

public class thistest 

thistest(string str,int age)

public static void main(string args)

}

結果為:

this測試成功

25

值得注意的是:

1:在構造呼叫另乙個建構函式,呼叫動作必須置於最起始的位置。

2:不能在建構函式以外的任何函式內呼叫建構函式。

3:在乙個建構函式內只能呼叫乙個建構函式。

5.this同時傳遞多個引數。

public class testclass 

void seeit()

public static void main(string args)

}

結果為:

9 10
**中的showtest(this),這裡的this就是把當前例項化的p傳給了showtest()方法,從而就執行了。

Java中的關鍵字

abstract 抽象的 continue 繼續 for 當 的時候 new 新建 switch 轉換 assert 斷言 default 預設 if 如果 package 打包 synchronized 同步 boolean 布林 do 做 goto 跳轉到 private 私有的 this 這個...

java中的this關鍵字

1.this是指當前物件自己。當在乙個類中要明確指出使用物件自己的的變數或函式時就應該加上this引用。如下面這個例子中 public class hello public static void main string args 執行結果 s helloworld 1 this.s hello 2...

Java中的關鍵字

a bstract 表明類或者成員方法具有抽象屬性 assert 用來進行程式除錯 boolean 基本資料型別之一,布林型別 break 提前跳出乙個塊 byte 基本資料型別之一,位元組型別 case 用在switch語句之中,表示其中的乙個分支 catch 用在異常處理中,用來捕捉異常 cha...