gpt4 book ai didi

objective-c - 单例创建首选项

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:48 27 4
gpt4 key购买 nike

您可以通过多种方式创建单例。我想知道这两者之间哪个更好。

+(ServerConnection*)shared{
static dispatch_once_t pred=0;
__strong static id _sharedObject = nil;
dispatch_once(&pred, ^{
_sharedObject = [[self alloc] init]; // or some other init method

});
return _sharedObject;
}

我可以看到这编译成非常快的东西。我认为检查谓词将是另一个函数调用。另一个是:

+(ServerConnection*)shared{
static ServerConnection* connection=nil;
if (connection==nil) {
connection=[[ServerConnection alloc] init];
}
return connection;
}

两者之间有什么主要区别吗?我知道这些可能足够相似,不必担心。但只是想知道。

最佳答案

主要区别在于第一个使用 Grand Central Dispatch 来确保创建单例的代码只会运行一次。这向您保证它将是一个单例。

GCD 还应用了威胁安全,因为根据规范,对 dispatch_once 的每次调用都将同步执行。

我会推荐这个

+ (ConnectionManagerSingleton*)sharedInstance {

static ConnectionManagerSingleton *_sharedInstance;
if(!_sharedInstance) {
static dispatch_once_t oncePredicate;
dispatch_once(&oncePredicate, ^{
_sharedInstance = [[super allocWithZone:nil] init];
});
}

return _sharedInstance;
}

+ (id)allocWithZone:(NSZone *)zone {

return [self sharedInstance];
}

- (id)copyWithZone:(NSZone *)zone {
return self;
}

取自此处http://blog.mugunthkumar.com/coding/objective-c-singleton-template-for-xcode-4/

编辑:

这正是您所问问题的答案 http://cocoasamurai.blogspot.jp/2011/04/singletons-your-doing-them-wrong.html

编辑 2:

前面的代码是针对ARC的,如果你想要非arc支持添加

#if (!__has_feature(objc_arc))

- (id)retain {

return self;
}

- (unsigned)retainCount {
return UINT_MAX; //denotes an object that cannot be released
}

- (void)release {
//do nothing
}

- (id)autorelease {

return self;
}
#endif

(完全按照第一个链接的解释)

关于单例的最后一个很好的解释:

http://csharpindepth.com/Articles/General/Singleton.aspx

关于objective-c - 单例创建首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10859750/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com