this 關鍵字在Java 中用來引用物件的目前實例,具體作用包括:引用目前物件實例從建構函式中呼叫其他建構函式從內部類別存取外部類別的成員
#this 在Java 中的作用
#簡單回答:
this 關鍵字在Java 中用於引用物件的目前實例。
詳細回答:
this 關鍵字是 Java 中的一個保留字,它可以在方法、建構子和內部類別中使用。其主要作用是:
範例:
<code class="java">public class Example { private int x; public Example(int x) { this.x = x; } public int getX() { return this.x; } public static void main(String[] args) { Example example = new Example(10); int x = example.getX(); System.out.println(x); // 输出 10 } }</code>
在上面的範例:
中的
this.x = x 將參數值指派給物件變數
x。
中的
this.x 存取物件變數
x。
以上是this java中的作用的詳細內容。更多資訊請關注PHP中文網其他相關文章!