Concept Flow - Object creation and destruction flow
Start Program
Call Constructor
Object Created
Use Object
Call Destructor
Object Destroyed
End Program
This flow shows how a C++ object is created by calling its constructor, used, then destroyed by calling its destructor when it goes out of scope.