What happens if an exception is throws from an, object's
constructor and object's destructor?
Answers were Sorted based on User's Feedback
Answer / dee
if the exception is thrown in constructor, its caught or
function terminate will eb called.
U cannot throw exception from destructor
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / som shekhar
When an exception is thrown from the object constructor,
then the destructor of the object wont be called. But to
undone all the things that happened in the c'tor before the
exception is thrown, you can make use of smart
pointer(either boost smart pointer or std auto pointer).
when an exception is thrown from the destructor the compiler
terminates the application.
So it is advisable not to throw an exception in the
destructor , better to do "something else".
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / akshay
constructor:
the destructors of all the member objects that were
correctly created are called, then code goes to the catch
statement if any
dtors:
legally allowed, however, it should be caught within the
function. if it is not caught, then it may lead to a call to
terminate() function. this call would happen in the case
when the destructor was itself called due to stack unwinding
happening because of another exception in probably some
other function.
| Is This Answer Correct ? | 2 Yes | 2 No |
Do you know about C++ 11 standard?
0 Answers Agilent, ZS Associates,
What is the best way to declare and define global variables?
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
Differentiate between an array and a list?
What do you mean by inheritance in c++?
Write about the local class and mention its use?
Explain "passing by value", "passing by pointer" and "passing by reference" ?
What is Pure Virtual Function? Why and when it is used ?
What is format for defining a structure?
What is size of a empty class?
7 Answers Microsoft, Tata Elxsi, Wipro,
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Which one between if-else and switch is more efficient?