码迷,mamicode.com
首页 > 编程语言 > 详细

objective c - 单例模式(多线程)

时间:2014-09-10 22:34:01      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   2014   sp   cti   log   on   c   amp   

//基于gcd的单例模式

static Type *_instances;

+ (id)allocWithZone:(NSZone *)zone
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken,^{
    _instances = [super allocWithZone:zone];
});
     return _instances;
}
//创建一个获取单例的方法
+ (Type *)sharedInstances
{
    if(_instances == nil){
       _instances = [[self alloc] init];
    }
    return _instances;
}


并且所有读取单例的地方都要用@synchronized “加锁”

objective c - 单例模式(多线程)

标签:blog   ar   2014   sp   cti   log   on   c   amp   

原文地址:http://blog.csdn.net/chenchaoflight/article/details/39186859

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!