vote up 1 vote down star
1

This is not a garbage collected environment

I have a class instance variable which at some point in my runtime, I need to re-initialize with a different data set than it was originally constructed with.

Hypothetically speaking, what if I have an NSMutableArray or an NSMutableDictionary, would it be more efficient to do something such as:

[myArr release];
myArr  = [[NSMutableArray alloc] init....];

or just,

myArr = nil;

Will myArr release the object and leave me without a pointer to the storage in memory so I can re-use myArr?

flag

63% accept rate

5 Answers

vote up 12 vote down check

If you do myArr=nil; by itself, then you've lost the pointer to which you can send the release message to. There is no magic to release your object.

And, as gs says, without being able to release your object, that memory has 'leaked'.

link|flag
And there's the memory leak. – gs Mar 9 at 16:42
vote up 1 vote down

If what you want is to reset the contents of an NSMutableArray/NSMutableDictionary, you can also call removeAllObjects and you have a fresh array/dict to work with.

link|flag
vote up 3 vote down

You could use a property and get almost the syntax you want without the memory leak.

Use this syntax to declare the array

@property (readwrite, retain) NSMutableArray *myArray;

Then re-initialize it like this:

[self setMyArray:[NSMutableArray array]];
link|flag
Or to use the dot-property syntax: self.myArray = [NSMutableArray array]; – Daniel Dickison Mar 9 at 17:10
as myArray points to a mutable object, better form would be @property(readwrite, copy)NSMutableArray *myArray – Abizern Mar 9 at 18:19
vote up 4 vote down

If you were on Mac OS, not iPhone OS I would say that it depends on whether the garbage collector is activated or not:

  • with GC: use myArr = nil;
  • without GC: use [myArr release];

Unfortunately, on iPhone, there is no garbage collection, so if you don't want memory leaks, you have to release your object once you no longer need it.

link|flag
No GC on iPhone. – Abizern Mar 9 at 16:26
Yes you are right. I am too focused on Mac OS... My answer is updated. – mouviciel Mar 9 at 16:34
You don't even need to set it to nil, as this happens mostly in the dealloc code when the upper object with all it's links is collected. – gs Mar 9 at 17:05
vote up 1 vote down

One way to realize the difference might be this: Setting a reference to an object to nil does nothing to the object, it only does something to the reference.

"Releasing the object" is not "nothing", so it doesn't do that. :) In a garbage-collected language it might do that as a side-effect of dropping the reference, but in Objective C it doesn't work that way.

link|flag

Your Answer

Get an OpenID
or

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