Question: Program Design Including Data Structures Ch 14 Questions 1. What is the difference between a try block and a catch block? 2. Consider the following

Program Design Including Data Structures Ch 14 Questions

1. What is the difference between a try block and a catch block?

2. Consider the following C++ code:

double balance;

try { cout << "Enter the balance: "; cin >> balance; cout << endl;

if (balance < 1000.00) throw balance;

cout << "Leaving the try block." << endl; } catch (double x)

{ cout << "Current balance: " << x << endl << "Balance must be greater than 1000.00" << endl; }

a. In this code, identify the try block.

b. In this code, identify the catch block.

c. In this code, identify the catch block parameter and its type.

d. In this code, identify the throw statement.

4. If you define your own exception class, what is typically included in that class?

5. Suppose the exception class myException is defined as follows:

class myException { public: myException() { message = "myException thrown!"; cout << "Immediate attention required!" << endl; }

myException(string msg) { message = msg; cout << "Attention required!" << endl; }

string what() { return message; }

private: string message; }

Suppose that in a user program, the catch block has the following form:

catch (myException mE) { cout << mE.what() << endl; }

a. What output will be produced if the exception is thrown with the default constructor?

b. Also, what output will be produced if the exception is thrown with the constructor with parameters with the following actual parameter? "May Day, May Day"

5. Name three exception-handling techniques.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!