请看代码,请进。。
public class Account{
int accountId=10000;
public Account createAccount()
{
accountId++;
return this;
}
public int getAccountId()
{
return accountId;
}
public static void main(String[] args)
{
Account account=new Account();
System.out.println("账号是:"+account.createAccount().getAccountId());
}
}
请问一下,其中的 this 代表什么意思。先谢了。