C programmers think memory management is too important to be left to the computer. Lisp programmers think memory management is too important to be left to the user.
discuss!
Name:
Anonymous2010-02-16 1:56
>>37
This is so stupid; dealloc is not a destructor, since you can't be sure if it will be called, which means you can't place things you want done in it when object is destroyed. Which leaves you with one thing - things you don't care about but somehow still have to do like deallocating memory or freeing resources, things that are done automatically by the language in sane world.