Is there any chance for a call to std::vector<T>::clear() to throw an exception?
|
|
No.
What happens if my element type destructor throws?In C++11, Any exceptions falling out of
|
|||||||||||
|
|
No. Edit: Oops, accidentally used N3126. Some Standard section numbers below are no good. 23.2.1p11:
In 23.4.1.4, If an element destructor throws during |
|||||||||
|
|
Yes, if the destructor of Update: seems i was dead wrong; it just crashes in that case |
|||||||||||||||
|
|
Yes and No Yes:
Destructors may eventually throw an exception. Memory freeing may also fail in abrnormal cases (such as heap corruption or etc.) No: Throwing exceptions is destructors is criticized and mostly doesn't happen (at least in the standard libraries). Besides the fact that exception thrown from a destructor during the stack unwinding (caused by another exception) may not be handled, there is a logical problem with exceptions in destructors. Error in freeing memory usually caused by heap corruption or other unrecoverable problem. Anyway the program's fate is to die, no matter if there'll be exception or not |
|||||||
|
