目标:掌握利用this返回当前引用的方法
源文件:Account.java
/**
* 返回当前对象的引用
* author guojing;
* e-mail guo443193911@126.com
*/
package cn.com.Account;
public class Account {
int accountId = 100000;
public Account creatAccount(){
accountId ++;
return this;
}
public int getAccountid(){
return accountId;
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Account count = new Account();
System.out.println("账号是:" + count.creatAccount().getAccountid());
}
}
由于creatAccount()方法返回了同一个对象,所以可以在这个对象上多次调用方法creatAccount。
编译并运行上面的程序,将得到如下的输出:
账号是:100001
阅读(475) | 评论(0) | 转发(0) |