> On Aug 11, 2016, at 3:32 PM, Sandor Szatmari <admin.szatmari....@gmail.com> 
> wrote:
> 
> 1. If at all possible, and within reason, avoid mutable objects in 
> collections (your swift points address this).
> 

It depends on the collection, and how the mutable objects are handling -hash 
and -isEqual:

It’s OK, for example, to use mutable objects as the values in an NSDictionary; 
but can be hazardous when used as the keys.

NSArrays have no problem with mutable objects for most of their methods, 
because they are based on index positions.

NSSets can hiccup quite badly if something mutates unexpectedly.

NSObject, by itself, implements pointer hashing (i.e, -hash is derived from the 
value of self); and pointer comparison (a basic NSObject is only equal to 
itself); so if you don’t override -hash and -isEqual: than any mutability your 
objects might have won’t be visible to the collection objects.

> 2. You really need to be overtly aware of these details when designing 
> classes and implementing -hash and -isEqual:

And when using them in collections, even if you are just using the stock Cocoa 
value classes!

:-)
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to