memory management - difference between drain and release -


i want know difference between drain , release in memory management..please me suitable example.

in garbage collected environment, release no-op. nsautoreleasepool therefore provides drain method in reference-counted environment behaves same calling release, in garbage collected environment triggers garbage collection (if memory allocated since last collection greater current threshold). typically, therefore, should use drain rather release dispose of autorelease pool.

source: http://developer.apple.com/library/mac/#documentation/cocoa/conceptual/memorymgmt/articles/mmautoreleasepools.html


Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

web applications - Making Python scripts work on MAMP -

cocoa - Converting NSString to keyCode+modifiers for AXUIElementPostKeyboardEvent -