• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: singleton pattern in cocoa
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: singleton pattern in cocoa


  • Subject: Re: singleton pattern in cocoa
  • From: Jean-Daniel Dupas <email@hidden>
  • Date: Mon, 14 Sep 2009 18:51:02 +0200

Definition of true singleton is generally discouraged and not really useful.

See more info about it here:

http://eschatologist.net/blog/?p=178


Le 10 sept. 2009 à 22:07, Manuel Grau a écrit :

Hi all,

As I come from java world, I was trying to implement the singleton pattern, very usual in java. After searching in internet I found this code from wikipedia:

@interface MySingleton : NSObject
{
}

+ (MySingleton *)sharedSingleton;
@end

@implementation MySingleton

static MySingleton *sharedSingleton;

+ (MySingleton *)sharedSingleton
{
 @synchronized(self)
 {
   if (!sharedSingleton)
     [[MySingleton alloc] init];

   return sharedSingleton;
 }
}

+(id)alloc
{
@synchronized(self)
{
NSAssert(sharedSingleton == nil, @"Attempted to allocate a second instance of a singleton.");
sharedSingleton = [super alloc];
return sharedSingleton;
}
}


@end

What do you think about this implementation? I'm newbie with cocoa and I'm not sure.

Thanks.


_______________________________________________

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


-- Jean-Daniel




_______________________________________________

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


References: 
 >singleton pattern in cocoa (From: Manuel Grau <email@hidden>)

  • Prev by Date: Re: singleton pattern in cocoa
  • Next by Date: Re: Help book content
  • Previous by thread: Re: singleton pattern in cocoa
  • Next by thread: NSPanel key equivalents not working
  • Index(es):
    • Date
    • Thread