2013-09-22 73 views

回答

1

使用this

public Test(int id){ 
    this.id = id; 
} 

here

在實例方法或構造,this是對當前對象的引用 - 它的方法或構造函數被調用的對象。您可以使用this從實例方法或構造函數中引用當前對象的任何成員。

0

您可以使用分配:

this.id = id; 
0

數據實例隱藏正在發生here.your局部變量隱藏了實例變量。 所以訪問實例數據,總是用 「這個」

因此this.name =名稱