| <<< Destructors | Index | Destructor example >>> |
Destructors chain to sub-objects in the exact reversed order of the constructors chain:
int main()
{
Moped honda;
return 0;
}// ~Moped() destructor is invoked: honda goes out of scope
|
|
| <<< Destructors | Index | Destructor example >>> |