SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Walter Savitch ,kenrick Mock
Chapter:
Exception Handling
Exercise:
Programming Projects
Question:5 | ISBN:9780132846813 | Edition: 5

Question

A function that returns a special error code is usually better accomplished throwing an exception instead. The following class maintains an account balance.

class Account

{

private:

double balance;

public:

Account()

{

balance = 0;

}

Account( double initialDeposit)

{

balance = initialDeposit;

}

double getBalance()

{

return balance;

}

// returns new balance or -1 if error

double deposit( double amount)

{

if (amount > 0)

balance += amount;

else

return -1;

return balance;

// Code indicating error

}

// returns new balance or -1 if invalid amount

double withdraw( double amount)

{

if ((amount > balance) || (amount < 0))

return -1;

else

balance -= amount;

return balance;

}

};


Rewrite the class so that it throws appropriate exceptions instead of returning -1 as an error code. Write test code that attempts to withdraw and deposit invalid amounts and catches the exceptions that are thrown.


TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Sorry the answer is not available at the moment…

If you are able to find the answer, please make sure to post it here. So that your Juniors have smile on their lips and feel happy.

Spread the 'tradition of sharing'.