我想知道初始化单身人士成员的最佳位置在哪里。
我正在使用Apple基本指南单例实现。你能指出一下这些线路是怎么发生的吗?代码如下:
static MyGizmoClass *sharedGizmoManager = nil;
+ (MyGizmoClass*)sharedManager
{
@synchronized(self) {
if (sharedGizmoManager == nil) {
[[self alloc] init]; // assignment not done here
}
}
return sharedGizmoManager;
}
+ (id)allocWithZone:(NSZone *)zone
{
@synchronized(self) {
if (sharedGizmoManager == nil) {
sharedGizmoManager = [super allocWithZone:zone];
return sharedGizmoManager; // assignment and return on first allocation
}
}
return nil; //on subsequent allocation attempts return nil
}
- (id)copyWithZone:(NSZone *)zone
{
return self;
}
- (id)retain
{
return self;
}
- (unsigned)retainCount
{
return UINT_MAX; //denotes an object that cannot be released
}
- (void)release
{
//do nothing
}
- (id)autorelease
{
return self;
}
答案 0 :(得分:18)
与通常的类一样 - 在块上方添加:
-(id)init {
if (self = [super init]) {
// do init here
}
return self;
}
第一次访问单例时将调用它。
答案 1 :(得分:1)
您可以在init方法中初始化它们,就像任何其他类一样。
但是,请注意,如果您的单件包含成员状态,则它可能不再是线程安全的。由于可以随时在应用程序的任何位置访问单例,因此可以从不同的线程访问它。