Can we use resume in error handling i.e. in the catch block
Answers were Sorted based on User's Feedback
Answer / mms zubeir
I believe the question is not properly formed, am I right?
The question could be: Can we resume the execution from
where the exception is thrown?
The answer can be Yes** and No*.
* - By using C++ try/catch mechanism we cannot resume back
because of the stack unwinding happens.
** - By using structured exception handling of Win32, we
can resume.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / s.murali krishnan
No.
The Exception can only handled using the catch block
the error CANNOT be handled.
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain stack & heap objects?
What are exceptions c++?
What is virtual table?
What is the best ide for c++?
What is do..while loops structure?
Mention the purpose of istream class?
Can circle be called an ellipse?
In C++ cout is: a) object b) class c) something else
11 Answers Infosys, Lehman Brothers,
What is meant by a delegate?
Can I learn c++ without learning c?
Explain the concept of memory leak?
What is a hashmap c++?