Mine is merely (or a close variant thereof):
static MyClass *gInstance = NULL;
+ (MyClass *)instance
{
@synchronized(self)
{
if (gInstance == NULL)
gInstance = [[self alloc] init];
}
return(gInstance);
}
|
33
|
Mine is merely (or a close variant thereof):
|
||||||
|
|
|
Here's a wiki version people can edit, based on schwa's original (now revised to include more methods, based on Apple's recommendations for Singletons):
|
||||||||
|
|
|
You can optimize the access to the instance by synchronizing only if it's really needed. If gInstance is alread initialized, we don't have to take the lock.
|
||||||
|
|
|
I usually use code roughly similar to that in Ben Hoffstein's answer (which I also got out of Wikipedia). I use it for the reasons stated by Chris Hanson in his comment. However, sometimes I have a need to place a singleton into a NIB, and in that case I use the following:
I leave the implementation of |
||
|
|
|
A thorough explanation of the Singleton macro code is on the blog Cocoa With Love http://cocoawithlove.com/2008/11/singletons-appdelegates-and-top-level.html. M@ |
||
|
|
|
|
Another option is to use the +(void)initialize method. From the documentation: "The runtime sends initialize to each class in a program exactly one time just before the class, or any class that inherits from it, is sent its first message from within the program. (Thus the method may never be invoked if the class is not used.) The runtime sends the initialize message to classes in a thread-safe manner. Superclasses receive this message before their subclasses." So you could do something akin to this:
|
||||
|
|
|
For years I've been copying the one out of the Apple docs:
But I'm not really very happy with it. It would be great if Apple were to build this into the language. |
||||||
|
|
|
This works in a non-garbage collected environment also.
|
|||
|
|
|
|
static MyClass *sharedInst = nil;
+ (id)sharedInstance
{
@synchronize( self ) {
if ( sharedInst == nil ) {
/* sharedInst set up in init */
[[self alloc] init];
}
}
return sharedInst;
}
- (id)init
{
if ( sharedInst != nil ) {
[NSException raise:NSInternalInconsistencyException
format:@"[%@ %@] cannot be called; use +[%@ %@] instead"],
NSStringFromClass([self class]), NSStringFromSelector(_cmd),
NSStringFromClass([self class]),
NSStringFromSelector(@selector(sharedInstance)"];
} else if ( self = [super init] ) {
sharedInst = self;
/* Whatever class specific here */
}
return sharedInst;
}
/* These probably do nothing in
a GC app. Keeps singleton
as an actual singleton in a
non CG app
*/
- (NSUInteger)retainCount
{
return NSUIntegerMax;
}
- (oneway void)release
{
}
- (id)retain
{
return sharedInst;
}
- (id)autorelease
{
return sharedInst;
}
|
|||
|
|
|
|
||||||
|