Does C++ support \'finally\' blocks?
What is the RAII idiom?
What is the difference between C++\'s RAII idiom and C#\'s \'using\' statement?
try { ... goto finally; } catch(...) { ... goto finally; } finally: { ... }