What is the scope of the exception object in C++? does it go out of scope as soon as catch handler is executed? Also, if I create an unnamed exception object and throw it, then while catching that exception does it matter if I catch it by const reference or a non-const reference?
|
|
|||||||||||
|
|
|
When a The exception object's scope is outside of the scope of the block where the throw occurs. Think of it as living in a special exception area off to one side of the normal call stack where local objects live. Inside a If you The exception object is destroyed when the last catch block that does not exit via a re-throw (i.e. a parameterless throw expression evaluation) completes. |
|||
|
|
|
|
The exception object is available only in
|
||
|
|
|
|
First of all, the object you throw goes out of scope almost immediately. What's going to be caught by exception handlers is a copy of original object. That copy will be deleted after catch handler is executed unless you catch it by value (not by reference). In this case there will be another copy created. But you should catch it by reference (preferably const one) anyway. |
||
