I'm using an array to store cached objects loaded from a database in my iPhone app, and was wondering: are there any significant disadvantages to using NSMutableArray that I should know of?
edit: I know that NSMutableArray can be modified, but I'm looking for specific reasons (performance, etc..) why one would use NSArray instead. I assume there would be a performance difference, but I have no idea whether it's significant or not.
If you're loading objects from a database and you know exactly how many objects you have, you would likely get the best performance from
NSMutableArray
sarrayWithCapacity:
method, and adding objects to it until full, so it allocates all the memory at once if it can.Behind the scenes, they're secretly the same thing -*NSArray
andNSMutableArray
are both implemented withCFArray
s via toll free bridging (aCFMutableArrayRef
and aCFArrayRef
are typedef's of the same thing,__CFArray *
)NSArray
andNSMutableArray
should have the same performance/complexity (access time being O(lg N) at worst and O(1) at best) and the only difference being how much memory the two objects would use -NSArray
has a fixed limit, whileNSMutableArray
can use up as much space as you have free.The comments in CFArray.h have much more detail about this.
*: As Catfish_Man points out below, this isn't true anymore.
The main disadvantage to
NSMutableArray
is that an object owning aNSMutableArray
may have the array changed behind its back if another object also owns it. This may require you to code your object more defensively, less aggressively chasing performance.If the
NSMutableArray
is not exposed outside of the object, this isn't a concern.NSArray
is a better choice for sharing, precisely because it is immutable. Every object using it can assume it won't change, and doesn't need to defensively make a copy of it.This is probably the same reason that
NSDictionary
copies its keys, rather than simply retaining them: it needs to be sure that they won't mutate, and copying is the only way to guarantee that.You can't modify
NSArray
once it is created. If you need to add/remove objects from your array then you will useNSMutableArray
- not much options for that. I assumeNSArray
is optimized for fixed array operations. Mutable array provides flexibly of being modifiable.The performance difference of using NSArray versus NSMutable array arises primarily when you use an API that wants to copy the array. if you send -copy to an immutable array, it just bumps the retain count, but sending -copy to a mutable array will allocate heap memory.
In addition, NSMutableArray is not threadsafe, while NSArray is (same with all the mutable vs. "immutable" objects). This could be a huge problem if you're multithreading.