java中this指的是什麼
在類別的方法定義中使用this關鍵字代表使用該方法的物件的引用。
當必須指出目前使用方法的物件是誰時要使用this。
有時會使用this可以處理方法中成員變數和參數重名的情況。
this可以看作是一個變量,它的值是當前物件的引用,它指向自身的這個物件。 (推薦教學:java教學)
public class Leaf { int i = 0; public Leaf(int i) { this.i = i; } Leaf increament() { i++; return this; } void print() { System.out.println("i = " + i); } public static void main(String[] args) { Leaf leaf = new Leaf(100); leaf.increament().increament().print(); } }#
以上是javathis指的是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!