8. วัตถุสิ่งของ

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 8-13  โปรแกรมทดสอบการใช้งาน BankAccount
public class TestBankAccount {
  public static void main(String[] a) {
    BankAccount ba1 = new BankAccount("08-1234-79");
    BankAccount ba2 = new BankAccount("08-3827-81");
    ba1.deposit(1000);
    ba2.deposit(500);
    ba1.transferTo(ba2, 200);
    System.out.println(ba1.getBalance() + "," + ba2.getBalance());
  }  
}
©2009 S.Prasitjutrakul