Does anyone have suggests for life-cycle names. Lifecyle functions are those that control the creation and termination of software engineering constructs.
Examples:
- new / delete
- init / finish
- create / destroy
- connect / disconnect
- constructor / destructor
Consider in the following scenario:
myObjectPtr = myObjectCreate();
myObjectDoSomething(myObjectPtr,1,2.34);
myObjectDoSomethingElse(myObjectPtr,"a string");
myObjectDestroy(myObjectPtr);