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 |
What is the difference between interpreters and compilers?
Explain what are mutator methods in c++?
why is iostream::eof inside a loop condition considered wrong?
Is c++ the hardest programming language?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
What are the storage qualifiers?
What is ios in c++?
Is swift faster than go?
How do you test your code?
Give 10 points of differences between C & C++.
Comment on local and global scope of a variable.
What is switch case in c++ syntax?