CashDispenser.java
上传用户:ljt780218
上传日期:2022-07-30
资源大小:110k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Java

  1. // CashDispenser.java
  2. // Represents the cash dispenser of the ATM
  3. public class CashDispenser 
  4. {
  5.    // the default initial number of bills in the cash dispenser
  6.    private final static int INITIAL_COUNT = 500;
  7.    private int count; // number of $20 bills remaining
  8.    
  9.    // no-argument CashDispenser constructor initializes count to default
  10.    public CashDispenser()
  11.    {
  12.       count = INITIAL_COUNT; // set count attribute to default
  13.    } // end CashDispenser constructor
  14.    // simulates dispensing of specified amount of cash
  15.    public void dispenseCash( int amount )
  16.    {
  17.       int billsRequired = amount / 20; // number of $20 bills required
  18.       count -= billsRequired; // update the count of bills
  19.    } // end method dispenseCash
  20.    // indicates whether cash dispenser can dispense desired amount
  21.    public boolean isSufficientCashAvailable( int amount )
  22.    {
  23.       int billsRequired = amount / 20; // number of $20 bills required
  24.       if ( count >= billsRequired  )
  25.          return true; // enough bills available
  26.       else 
  27.          return false; // not enough bills available
  28.    } // end method isSufficientCashAvailable
  29. } // end class CashDispenser
  30. /**************************************************************************
  31.  * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and               *
  32.  * Pearson Education, Inc. All Rights Reserved.                           *
  33.  *                                                                        *
  34.  * DISCLAIMER: The authors and publisher of this book have used their     *
  35.  * best efforts in preparing the book. These efforts include the          *
  36.  * development, research, and testing of the theories and programs        *
  37.  * to determine their effectiveness. The authors and publisher make       *
  38.  * no warranty of any kind, expressed or implied, with regard to these    *
  39.  * programs or to the documentation contained in these books. The authors *
  40.  * and publisher shall not be liable in any event for incidental or       *
  41.  * consequential damages in connection with, or arising out of, the       *
  42.  * furnishing, performance, or use of these programs.                     *
  43.  *************************************************************************/