尚硅谷 Java 基础实战—Bank 项目—实验题目 7(在6基础上修改)

简介: 尚硅谷 Java 基础实战—Bank 项目—实验题目 7(在6基础上修改)

实验题目

将建立一个 OverdraftException 异常,它由 Account 类的withdraw()方法抛出。

image.png

实验目的

自定义异常

提示

创建 OverdraftException 类

  1. 在 banking.domain 包中建立一个共有类 OverdraftException。这个类 扩展 Exception 类。
  2. 添加一个 double 类型的私有属性 deficit。增加一个共有访问方法 getDeficit。
  3. 添加一个有两个参数的共有构造器。deficit 参数初始化 deficit 属性。

修改 Account 类

  1. 重写 withdraw 方法使它不返回值(即 void)。声明方法抛出 overdraftException 异常。
  2. 修改代码抛出新异常,指明“资金不足”以及不足数额(当前余额扣除请求的数额)

修改 CheckingAccount 类。

  1. 重写 withdraw 方法使它不返回值(即 void)。声明方法抛出 overdraftException 异常。
  2. 修改代码使其在需要时抛出异常。两种情况要处理:
  3. 第一是存在没有透支保尚硅谷 Java 基础实战— Bank 项目 护的赤字,对这个异常使用 “no overdraft protection”信息。
  4. 第二是 overdraftProtection 数额不
  1. 足以弥补赤字:对 这 个 异常可使用 ”Insufficient funds for overdraft protection” 信息 。

编译并运行 TestBanking 程序,看到下列输入结果:

Customer [Simms, Jane] hasacheckingbalanceof200.0witha500.00overdraftprotection.
CheckingAcct [JaneSimms] : withdraw150.00CheckingAcct [JaneSimms] : deposit22.50CheckingAcct [JaneSimms] : withdraw147.62CheckingAcct [JaneSimms] : withdraw470.00Exception: InsufficientfundsforoverdraftprotectionDeficit: 470.0Customer [Simms, Jane] hasacheckingbalanceof0.0Customer [Bryant, Owen] hasacheckingbalanceof200.0CheckingAcct [OwenBryant] : withdraw100.00CheckingAcct [OwenBryant] : deposit25.00CheckingAcct [OwenBryant] : withdraw175.00Exception: nooverdraftprotectionDeficit: 50.0Customer [Bryant, Owen] hasacheckingbalanceof125.0

代码

【Account.java】类

packagebanking;
importbanking.domain.OverdraftException;
publicclassAccount {
protecteddoublebalance;    //银行帐户的当前(或即时)余额//公有构造器 ,这个参数为 balance 属性赋值publicAccount(doubleinit_balance) {
this.balance=init_balance;
    }
//用于获取经常余额publicdoublegetBalance() {
returnbalance;
    }
/*** 向当前余额增加金额* @param amt   增加金额* @return  返回 true(意味所有存款是成功的)*/publicbooleandeposit(doubleamt){
balance+=amt;
returntrue;
    }
/*** 从当前余额中减去金额* @param amt   提款数目* @return  如果 amt小于 balance, 则从余额中扣除提款数目并返回 true,否则余额不变返回 false。*/publicvoidwithdraw(doubleamt) throwsOverdraftException {
if (amt<balance){
balance-=amt;
        }else{
thrownewOverdraftException("资金不足",balance-amt);
        }
    }
}

【Customer.java】类

packagebanking;
publicclassCustomer {
privateStringfirstName;
privateStringlastName;
privateAccount[] accounts=newAccount[10];
privateintnumOfAccounts;
publicCustomer(Stringf, Stringl) {
this.firstName=f;
this.lastName=l;
    }
publicStringgetFirstName() {
returnfirstName;
    }
publicStringgetLastName() {
returnlastName;
    }
/*** 通过下标索引获取 account* @param index 下标索引* @return account*/publicAccountgetAccount(intindex) {
returnaccounts[index];
    }
/*** 获取 numOfAccounts* @return  numOfAccounts*/publicintgetNumOfAccounts() {
returnnumOfAccounts;
    }
/*** 添加 account,并将 numOfAccounts+1* @param acct  account*/publicvoidaddAccount(Accountacct) {
accounts[numOfAccounts++]=acct;
    }
}

【Bank.java】类

packagebanking;
/*** 银行类*/publicclassBank {
privateCustomer[] customers;   //Customer对象的数组privateintnumberOfCustomer;   //整数,跟踪下一个 customers 数组索引privatestaticBankbankInstance=null;
/***  getBanking 的公有静态方法,它返回一个 Bank 类的实例。* @return 返回一个 Bank 类的实例。*/publicstaticBankgetBank(){
if(bankInstance==null){
bankInstance=newBank();
        }
returnbankInstance;
    }
/*** 单例模式中构造器也应该是私有的,以合适的最大尺寸(至少大于 5)初始化 customers 数组。*/privateBank() {
customers=newCustomer[10];
    }
/***  该方法必须依照参数(姓,名)构造一个新的 Customer 对象然后把它放到 customer 数组中。还必须把 numberOfCustomers 属性的值加 1。* @param f 姓* @param l 名*/publicvoidaddCustomer(Stringf,Stringl){
customers[numberOfCustomer++]=newCustomer(f,l);
    }
/*** 通过下标索引获取 customer* @param index 下标索引* @return  customer*/publicCustomergetCustomer(intindex) {
returncustomers[index];
    }
publicintgetNumOfCustomers() {
returnnumberOfCustomer;
    }
}

【CheckingAccount.java】类

packagebanking;
importbanking.domain.OverdraftException;
publicclassCheckingAccountextendsAccount{
privatedoubleoverdraftProtection;
publicCheckingAccount(doublebalance) {
super(balance);
    }
publicCheckingAccount(doublebalance, doubleprotect) {
super(balance);
this.overdraftProtection=protect;
    }
/*** 此方法必须执行下列检查。如 果当前余额足够弥补取款 amount,则正常进行。* 如果不够弥补但是存在透支保护,则尝试用 overdraftProtection 得值来弥补该差值(balance-amount).* 如果弥补该透支所需要的金额大于当前的保护级别。则整个交易失败,但余额未受影响。* @param amt   提款数目* @return  返回true代表交易成功,否则交易失败*/@Overridepublicvoidwithdraw(doubleamt) throwsOverdraftException {
if (balance<amt){
if(overdraftProtection==0){
thrownewOverdraftException("no overdraft protection",amt-balance);
            }
if (amt-balance>overdraftProtection) {
thrownewOverdraftException("Insufficient funds for overdraft protection",amt);
            }else {
overdraftProtection-=amt-balance;
balance=0;
            }
        }else {
balance-=amt;
        }
    }
}

【SavingsAccount.java】类

packagebanking;
publicclassSavingsAccountextendsAccount{
privatedoubleinterestRate;
publicSavingsAccount(doublebalance, doubleinterest_Rate) {
super(balance);
this.interestRate=interest_Rate;
    }
}

【CustomerReport.java】类

packagebanking.reports;
importbanking.Account;
importbanking.Bank;
importbanking.Customer;
importbanking.SavingsAccount;
publicclassCustomerReport {
/*** 客户报告,Generate a report*/publicstaticvoidgeneralReport(){
Bankbank=Bank.getBank();
System.out.println("\t\t\tCUSTOMERS REPORT");
System.out.println("\t\t\t================");
for (intcust_idx=0; cust_idx<bank.getNumOfCustomers(); cust_idx++) {
Customercustomer=bank.getCustomer(cust_idx);
System.out.println();
System.out.println("Customer: "+customer.getLastName() +", "+customer.getFirstName());
for (intacct_idx=0; acct_idx<customer.getNumOfAccounts(); acct_idx++) {
Accountaccount=customer.getAccount(acct_idx);
Stringaccount_type="";
// Determine the account type/*** Step 1:**** Use the instanceof operator to test what type of account**** we have and set account_type to an appropriate value, such**** as "Savings Account" or "Checking Account".***/if (accountinstanceofSavingsAccount) {
account_type="Savings Account";
                } else {
account_type="Checking Account";
                }
// Print the current balance of the account/*** Step 2:**** Print out the type of account and the balance.**** Feel free to use the currency_format formatter**** to generate a "currency string" for the balance.***/System.out.println("\t"+account_type+": current balance is ¥"+account.getBalance());
            }
        }
    }
}

【OverdraftException.java】类

packagebanking.domain;
/*** 自定义异常类*/publicclassOverdraftExceptionextendsException{
privatedoubledeficit;
publicOverdraftException(Stringmessage, doubledeficit) {
super(message);
this.deficit=deficit;
    }
publicdoublegetDeficit() {
returndeficit;
    }
}

【TestBanking.java】类

packagebanking;/** This class creates the program to test the banking classes.* It creates a set of customers, with a few accounts each,* and generates a report of current account balances.*/importbanking.domain.*;
publicclassTestBanking {
publicstaticvoidmain(String[] args) {
Bankbank=Bank.getBank();
Customercustomer;
Accountaccount;
// Create two customers and their accountsbank.addCustomer("Jane", "Simms");
customer=bank.getCustomer(0);
customer.addAccount(newSavingsAccount(500.00, 0.05));
customer.addAccount(newCheckingAccount(200.00, 500.00));
bank.addCustomer("Owen", "Bryant");
customer=bank.getCustomer(1);
customer.addAccount(newCheckingAccount(200.00));
// Test the checking account of Jane Simms (with overdraft protection)customer=bank.getCustomer(0);
account=customer.getAccount(1);
System.out.println("Customer ["+customer.getLastName()
+", "+customer.getFirstName() +"]"+" has a checking balance of "+account.getBalance()
+" with a 500.00 overdraft protection.");
try {
System.out.println("Checking Acct [Jane Simms] : withdraw 150.00");
account.withdraw(150.00);
System.out.println("Checking Acct [Jane Simms] : deposit 22.50");
account.deposit(22.50);
System.out.println("Checking Acct [Jane Simms] : withdraw 147.62");
account.withdraw(147.62);
System.out.println("Checking Acct [Jane Simms] : withdraw 470.00");
account.withdraw(470.00);
    } catch (OverdraftExceptione1) {
System.out.println("Exception: "+e1.getMessage()
+"   Deficit: "+e1.getDeficit());
    } finally {
System.out.println("Customer ["+customer.getLastName()
+", "+customer.getFirstName() +"]"+" has a checking balance of "+account.getBalance());
    }
System.out.println();
// Test the checking account of Owen Bryant (without overdraft protection)customer=bank.getCustomer(1);
account=customer.getAccount(0);
System.out.println("Customer ["+customer.getLastName()
+", "+customer.getFirstName() +"]"+" has a checking balance of "+account.getBalance());
try {
System.out.println("Checking Acct [Owen Bryant] : withdraw 100.00");
account.withdraw(100.00);
System.out.println("Checking Acct [Owen Bryant] : deposit 25.00");
account.deposit(25.00);
System.out.println("Checking Acct [Owen Bryant] : withdraw 175.00");
account.withdraw(175.00);
    } catch (OverdraftExceptione1) {
System.out.println("Exception: "+e1.getMessage()
+"   Deficit: "+e1.getDeficit());
    } finally {
System.out.println("Customer ["+customer.getLastName()
+", "+customer.getFirstName() +"]"+" has a checking balance of "+account.getBalance());
    }
  }
}



目录
相关文章
|
12天前
|
Java Maven
java项目中jar启动执行日志报错:no main manifest attribute, in /www/wwwroot/snow-server/z-server.jar-jar打包的大小明显小于正常大小如何解决
在Java项目中,启动jar包时遇到“no main manifest attribute”错误,且打包大小明显偏小。常见原因包括:1) Maven配置中跳过主程序打包;2) 缺少Manifest文件或Main-Class属性。解决方案如下:
java项目中jar启动执行日志报错:no main manifest attribute, in /www/wwwroot/snow-server/z-server.jar-jar打包的大小明显小于正常大小如何解决
|
8天前
|
存储 Java BI
java怎么统计每个项目下的每个类别的数据
通过本文,我们详细介绍了如何在Java中统计每个项目下的每个类别的数据,包括数据模型设计、数据存储和统计方法。通过定义 `Category`和 `Project`类,并使用 `ProjectManager`类进行管理,可以轻松实现项目和类别的数据统计。希望本文能够帮助您理解和实现类似的统计需求。
47 17
|
30天前
|
NoSQL Java 关系型数据库
Liunx部署java项目Tomcat、Redis、Mysql教程
本文详细介绍了如何在 Linux 服务器上安装和配置 Tomcat、MySQL 和 Redis,并部署 Java 项目。通过这些步骤,您可以搭建一个高效稳定的 Java 应用运行环境。希望本文能为您在实际操作中提供有价值的参考。
135 26
|
2月前
|
XML Java 测试技术
从零开始学 Maven:简化 Java 项目的构建与管理
Maven 是一个由 Apache 软件基金会开发的项目管理和构建自动化工具。它主要用在 Java 项目中,但也可以用于其他类型的项目。
68 1
从零开始学 Maven:简化 Java 项目的构建与管理
|
21天前
|
Java
Java基础却常被忽略:全面讲解this的实战技巧!
本次分享来自于一道Java基础的面试试题,对this的各种妙用进行了深度讲解,并分析了一些关于this的常见面试陷阱,主要包括以下几方面内容: 1.什么是this 2.this的场景化使用案例 3.关于this的误区 4.总结与练习
|
1月前
|
Java 程序员
Java基础却常被忽略:全面讲解this的实战技巧!
小米,29岁程序员,分享Java中`this`关键字的用法。`this`代表当前对象引用,用于区分成员变量与局部变量、构造方法间调用、支持链式调用及作为参数传递。文章还探讨了`this`在静态方法和匿名内部类中的使用误区,并提供了练习题。
42 1
|
2月前
|
Java
Java项目中高精度数值计算:为何BigDecimal优于Double
在Java项目开发中,涉及金额计算、面积计算等高精度数值操作时,应选择 `BigDecimal` 而非 `Double`。`BigDecimal` 提供任意精度的小数运算、多种舍入模式和良好的可读性,确保计算结果的准确性和可靠性。例如,在金额计算中,`BigDecimal` 可以精确到小数点后两位,而 `Double` 可能因精度问题导致结果不准确。
|
2月前
|
安全 Java 开发者
Java 多线程并发控制:深入理解与实战应用
《Java多线程并发控制:深入理解与实战应用》一书详细解析了Java多线程编程的核心概念、并发控制技术及其实战技巧,适合Java开发者深入学习和实践参考。
72 6
|
2月前
|
存储 安全 Java
Java多线程编程中的并发容器:深入解析与实战应用####
在本文中,我们将探讨Java多线程编程中的一个核心话题——并发容器。不同于传统单一线程环境下的数据结构,并发容器专为多线程场景设计,确保数据访问的线程安全性和高效性。我们将从基础概念出发,逐步深入到`java.util.concurrent`包下的核心并发容器实现,如`ConcurrentHashMap`、`CopyOnWriteArrayList`以及`BlockingQueue`等,通过实例代码演示其使用方法,并分析它们背后的设计原理与适用场景。无论你是Java并发编程的初学者还是希望深化理解的开发者,本文都将为你提供有价值的见解与实践指导。 --- ####
|
2月前
|
Java Android开发
Eclipse 创建 Java 项目
Eclipse 创建 Java 项目
52 4