What happens if an exception is throws from an object's
constructor and from object's destructor?
Answers were Sorted based on User's Feedback
Answer / rajesh
exception from object's destructor - could terminate the
program while stack unwinding.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / achal ubbott
If an exception is generated by constructor of the class
that object is not created. That means if you do
delete obj_ptr;
the destructor would not be called.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / reegan
if an exception is throws from object constructor, it is
caught by catch block .the same thing is happen in the objects
destructor.
| Is This Answer Correct ? | 1 Yes | 3 No |
How do you flush std cout?
What are the unique features of C++.
What is const in c++?
Can we sort map in c++?
how to find the maximum of 10 numbers ?
What is #include iostream h in c++?
When are exception objects created?
What is the use of setfill in c++?
What is the use of object in c++?
What is an accessor in c++?
What is the best c++ ide?
Why are arrays usually processed with for loop?