Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/** Practicing with throwing exceptions. In this exercise you throw an exception in the BankAccount class if 1) the constructor receives an initial balance that

/**
Practicing with throwing exceptions.  In this exercise you throw an
exception in the BankAccount class if
1) the constructor receives an initial balance that is negative, or
2) the deposit method receives a negative amount, or
3) the withdraw method receives a negative amount
*/
public class ExceptionTester3
{
public static void main(String[] args)
{
String[] expect = {
"Deposit 0, expect 1000.0",
"Initialize -500, expect exception and no change to balance.",
"Withdraw 300, expect 700.0",
"Withdraw -300, expect exception.",
"Deposit 300, expect 1000.",
"Deposit -300, expect exception.",
"Withdraw 2000, expect exception."
} ;
BankAccount account = new BankAccount(1000) ;
for (int i = 0 ; i < expect.length ; i++ ) {
try {
System.out.println("Case " + i + ": -------------") ;
switch (i)  {
case 0 : account.deposit(0) ; break ;
case 1 : account = new BankAccount(-500) ; break ;
case 2 : account.withdraw(300) ; break ;
case 3 : account.withdraw(-300) ; break ;
case 4 : account.deposit(300) ; break ;
case 5 : account.deposit(-300) ; break ;
case 6 : account.withdraw(2000) ; break ;
}
System.out.println(expect[i]) ;
System.out.println(account.getBalance()) ;
}
catch (IllegalArgumentException e) {
System.out.println(expect[i]) ;
System.out.println("IllegalArgumentException was caught") ;
System.out.println("Balance is: " + account.getBalance()) ;
}
}
}
}
/**
A bank account has a balance that can be changed by
deposits and withdrawals. This version only has a balance variable.

This version throws an exception in the constructor.
*/
class BankAccount
{  
//instance variables
private double balance; //the money in the account
/**
Initializes balance variable with a zero balance.
 */
public BankAccount()
{  
balance = 0;
}
/**
Initializes balance with a given parameter value aBalance.
@param aBalance the initial balance
 */
public BankAccount(double aBalance)
{  
//-----------Start below here. To do: approximate lines of code = 2
// 1. Throw an IllegalArgumentException if the initial balance is negative

//2. otherwise do the usual thing

//-----------------End here. Please do not remove this comment. Reminder: no changes outside the todo regions.
}
/**
Deposits money into the bank account.
@param amount the amount to deposit, which cannot be negative
 */
public void deposit(double amount)
{  
//-----------Start below here. To do: approximate lines of code = 1
// 3. Throw an IllegalArgumentException if the amount is negative
// set the message in the exception to: "Deposit amount is negative!"

//-----------------End here. Please do not remove this comment. Reminder: no changes outside the todo regions.
double newBalance = balance + amount;
balance = newBalance;
}
/**
Withdraws money from the bank account.
@param amount the amount to withdraw
 */
public void withdraw(double amount)
{  
//-----------Start below here. To do: approximate lines of code = 1
// 4. Throw an IllegalArgumentException if the amount is too much or if amount is negative
// set the message in the exception to: "withdrawal amount is negative or greater than balance!"

//-----------------End here. Please do not remove this comment. Reminder: no changes outside the todo regions.
balance -= amount ;
}
/**
Gets the current balance of the bank account.
@return the current balance
 */
public double getBalance()
{  
return balance;
}
/**
Gives a string representation of the bankaccount,
but in this case the string is just the balance.
@return the balance as a string
 */
public String toString()
{  
return "" + balance ;
}
}



Please include expected output in screenshot. And make sure your code formatting is all good!

Step by Step Solution

3.37 Rating (163 Votes )

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Probability And Statistics

Authors: Morris H. DeGroot, Mark J. Schervish

4th Edition

9579701075, 321500466, 978-0176861117, 176861114, 978-0134995472, 978-0321500465

More Books

Students also viewed these Programming questions

Question

sum = 0 ; for ( i = 1 ;i Answered: 1 week ago

Answered: 1 week ago