bankaccount.java

来自「Java 入门书的源码」· Java 代码 · 共 31 行

JAVA
31
字号
//Copyright (c) 1998, Arthur Gittleman
//This example is provided WITHOUT ANY WARRANTY either expressed or implied.

/* Declare a BankAccount class with an account balance 
 * attribute, a constructor, and deposit and getBalance
 *  operations.  Create and use some BankAccount objects.
 */

public class BankAccount {
  private int balance;
  BankAccount()   {    
    balance = 0;
  }
  public void deposit(int amount) {
    balance += amount;
  }
  public int getBalance() {
    return balance;
  }
  public static void main (String [ ] args) {
    BankAccount myAccount = new BankAccount();
    System.out.println("My balance = " + myAccount.getBalance());
    myAccount.deposit(10000);
    System.out.println("My balance = " + myAccount.getBalance());
    BankAccount  yourAccount;
    yourAccount = new BankAccount();
    yourAccount.deposit(123456);
    System.out.println("Your balance = " + yourAccount.getBalance());
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?