Wrap-Up
Answers to Self Review Exercises
16.1 |
Insufficient memory to satisfy a new request, array subscript out of bounds, arithmetic overflow, division by zero, invalid function parameters. |
|
|
16.2 |
(a) Exception handling is designed to handle infrequently occurring situations that often result in program termination, so compiler writers are not required to implement exception handling to perform optimally. (b) Flow of control with conventional control structures generally is clearer and more efficient than with exceptions. (c) Problems can occur because the stack is unwound when an exception occurs and resources allocated prior to the exception might not be freed. (d) The "additional" exceptions make it more difficult for the programmer to handle the larger number of exception cases. |
16.3 |
It is unlikely that a library function will perform error processing that will meet the unique needs of all users. |
16.4 |
A program that terminates abruptly could leave a resource in a state in which other programs would not be able to acquire the resource, or the program itself might not be able to reacquire a "leaked" resource. |
16.5 |
The exception handlers (in the catch handlers) for that TRy block are skipped, and the program resumes execution after the last catch handler. |
16.6 |
An exception thrown outside a try block causes a call to terminate. |
16.7 |
The form catch(...) catches any type of exception thrown in a try block. An advantage is that all possible exceptions will be caught. A disadvantage is that the catch has no parameter, so it cannot reference information in the thrown object and cannot know the cause of the exception. |
16.8 |
This causes the search for a match to continue in the next enclosing TRy block if there is one. As this process continues, it might eventually be determined that there is no handler in the program that matches the type of the thrown object; in this case, terminate is called, which by default calls abort. An alternative terminate function can be provided as an argument to set_terminate. |
16.9 |
The first matching exception handler after the try block is executed. |
16.10 |
This is a nice way to catch related types of exceptions. |
16.11 |
A base-class handler would catch objects of all derived-class types. |
16.12 |
No, but it does terminate the block in which the exception is thrown. |
16.13 |
The exception will be processed by a catch handler (if one exists) associated with the try block (if one exists) enclosing the catch handler that caused the exception. |
16.14 |
It rethrows the exception if it appears in a catch handler; otherwise, function unexpected is called. |
16.15 |
Provide an exception specification listing the exception types that the function can throw. |
16.16 |
Function unexecpted is called. |
16.17 |
The try block expires, causing destructors to be called for each of these objects. |