An open API service indexing awesome lists of open source software.

https://github.com/kolbewilliams/cpp-cleanup-and-exception-unwinding

These 2 C++ programs demonstrate some behind the scenes operations of C++ that occur if an exception is thrown. The first program demonstrates that objects created in a try block are automatically destroyed if an exception is thrown. The second program demonstrates that unwinding of the stack occurs if an exception is thrown.
https://github.com/kolbewilliams/cpp-cleanup-and-exception-unwinding

cpp

Last synced: over 1 year ago
JSON representation

These 2 C++ programs demonstrate some behind the scenes operations of C++ that occur if an exception is thrown. The first program demonstrates that objects created in a try block are automatically destroyed if an exception is thrown. The second program demonstrates that unwinding of the stack occurs if an exception is thrown.

Awesome Lists containing this project

README

          

# C-Cleanup-And-Exception-Unwinding
These 2 C++ programs demonstrate some behind the scenes operations of C++ that occur if an exception is thrown. The first program demonstrates that objects created in a try block are automatically destroyed if an exception is thrown. The second program demonstrates that unwinding of the stack occurs if an exception is thrown.