Re: How to get strings like <CSSDictionary: 0x126a70> for all objects
Re: How to get strings like <CSSDictionary: 0x126a70> for all objects
- Subject: Re: How to get strings like <CSSDictionary: 0x126a70> for all objects
- From: Andrew Farmer <email@hidden>
- Date: Sun, 22 Feb 2009 06:23:49 -0800
On 22 Feb 09, at 06:14, Ken Tozier wrote:
I need to get unique identifiers for all objects I'm passed for use
as keys in an NSMutableDictionary. I tried using hash but I don't
know if that would really be unique.
It isn't. The only requirement for -[NSObject hash] is that two
objects which are considered equal must have the same hash. It's
perfectly valid (albeit silly) to implement the hash method as
returning a constant value.
It seems like the console printout for classes with no "description"
method would be perfect. I know how to get the class but how to get
the object address in hex? Here's a partial solution
[NSString stringWithFormat: @"<%@ %???>", [[someObject class]
description], someObject];
Is there a format code that would give me the address in hex?
@"%p" will give a string representation of the address. However, if
you're targeting 10.5 or later, you should probably consider
NSMapTable instead - it implements this functionality for you without
the overhead of generating string keys.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden