Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
1  
Different languages have different conventions (Obj-C's alloc/init are simply "new" in C#). Could you clarify which language/context you are referring to? – Dave Sep 15 '09 at 19:45
Language for this project is C, but I don't think that this question is language specific. Create/Destroy work nicely in this situation, however I have been told that Destroy may sound a bit "negative" to some. – Marc Sep 15 '09 at 20:22

1 Answer

The ones you have listed sound good. In general I'd stick with a paradigm that's already in place to make your code easier to read and maintain. In particular, the language or framework you're developing in likely has one already - I'd go with that. When in Rome...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.