Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:cocoa_and_objective-c:autorelease_pools_and_release_retain [2007/06/20 23:13] – created billh | docs:programming:cocoa_and_objective-c:autorelease_pools_and_release_retain [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== autorelease pools and release/ | ====== autorelease pools and release/ | ||
+ | ===== Summary of Memory Management Rules ===== | ||
+ | //(taken from " | ||
+ | * Releasing an object can free up its memory, which can be a concern if you're creating many objects during the execution of a program. | ||
+ | * Sending a release message does not necessarily destroy an object. | ||
+ | * The autorelease pool provides for the automatic release of objects when the pool itself is released. | ||
+ | * If you no longer need an object fro within a method but need to return it, send it an autorelease message to mark it for later release. | ||
+ | * When your application terminates, all the memory taken by your objects is released, whether or not they were in the autorelease pool. | ||
+ | * When you develop more sophisticated applications (such as Cocoa applications), | ||
+ | * If you directly create an object using an alloc or copy method (or with an allocWithZone:, | ||
+ | * You don't have to worry about releasing objects that are returned by methods other than those noted in the previous rule. It's not your responsibility; | ||
===== autorelease pools ===== | ===== autorelease pools ===== | ||
- | * in general, if you use the [[object alloc] init] method of creating an object in memory, it is up to you to release it | + | * in general, if you use the [ [object alloc] init] method of creating an object in memory, it is up to you to release it |
* if you use any other method to create the object, such as a class method (+), it is generally configured to be autoreleased | * if you use any other method to create the object, such as a class method (+), it is generally configured to be autoreleased | ||
* you can have multiple autorelease pools, including nested pools | * you can have multiple autorelease pools, including nested pools | ||
Line 9: | Line 19: | ||
* it is generally good practice to use an autorelease pool in each method that needs one | * it is generally good practice to use an autorelease pool in each method that needs one | ||
* make sure to distinguish that you are actually creating objects, rather than simply getting a reference to an object in a particular method | * make sure to distinguish that you are actually creating objects, rather than simply getting a reference to an object in a particular method | ||
- | * example:< | + | * example:< |
... | ... | ||
NSAutoreleasePool *aPool = [[NSAutoreleasePool alloc] init]; | NSAutoreleasePool *aPool = [[NSAutoreleasePool alloc] init]; |