iOS 多线程-GCD全面示例

//
//  ViewController.m
//  线程
//
//  Created by BMW on 2018/3/6.
//  Copyright ? 2018年 tsouTSoutsou. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@property (nonatomic, assign) NSUInteger ticketSurplusCount;

@end


@implementation ViewController
{
    dispatch_semaphore_t semaphoreLock;
}
//串行列队创建方法
- (void) chuanXing{
    
    dispatch_queue_t queue = dispatch_queue_create("net.bujige.testQueue", DISPATCH_QUEUE_SERIAL);
    NSLog(@"%@",queue);
    
    
}
//并发列队创建方法
- (void)bingXing{
    
    dispatch_queue_t queue = dispatch_queue_create("net.bujige.testQueue", DISPATCH_QUEUE_CONCURRENT);
    NSLog(@"%@",queue);

    
}
//主列队获取方法
- (void) getMainQueue{
    
    dispatch_queue_t queue = dispatch_get_main_queue();
    NSLog(@"%@",queue);

}
//全局并发队列的获取
- (void) quanJuQueue{
    
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    NSLog(@"%@",queue);
}

//dispatch_group线程同步
- (void) groupSync{
    //创建一个并发队列
    dispatch_queue_t disqueue = dispatch_queue_create("com.shidaiyinuo.NetWorkStudy", DISPATCH_QUEUE_CONCURRENT);
    //创建一个线程同步
    dispatch_group_t disgruop = dispatch_group_create();
    //任务异步添加到队列
    dispatch_group_async(disgruop, disqueue, ^{
        
    });
}

//同步执行 + 并发队列
- (void) syncAndConcurrent{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    
    //创建一个并发队列
    dispatch_queue_t queue = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_CONCURRENT);
    //添加同步任务一
    dispatch_sync(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    //添加同步任务二
    dispatch_sync(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    //添加同步任务三
    dispatch_sync(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
}

//异步执行 + 并发队列
- (void)asyncAndConcurrent{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    
    //创建一个并发队列
    dispatch_queue_t queue = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_CONCURRENT);
    //添加异步任务一
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    
    //添加异步任务二
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    
    //添加异步任务三
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
}

//同步执行 + 串行队列
- (void)syncAndSerial{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    
    //创建一个串行队列
    dispatch_queue_t queue = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    
    //添加同步任务一
    dispatch_sync(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    //添加同步任务二
    dispatch_sync(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    //添加同步任务三
    dispatch_sync(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
}

//异步执行 + 串行队列
- (void)asyncAndSerial{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    
    //创建一个串行队列
    dispatch_queue_t queue = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    
    //添加异步任务一
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 3; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    
    //添加异步任务二
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    
    //添加异步任务三
    dispatch_async(queue, ^{
        //模拟耗时操作
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
}

//同步执行 + 主队列
- (void)syncAndMain{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    
    //创建一个主队列
    dispatch_queue_t queue = dispatch_get_main_queue();
    
    //添加同步任务
    dispatch_sync(queue, ^{
        // 追加任务1
        for (int i = 0; i < 2; ++i) {
            [NSThread sleepForTimeInterval:2];              // 模拟耗时操作
            NSLog(@"1---%@",[NSThread currentThread]);      // 打印当前线程
        }
    });

    dispatch_sync(queue, ^{
        // 追加任务2
        for (int i = 0; i < 2; ++i) {
            [NSThread sleepForTimeInterval:2];              // 模拟耗时操作
            NSLog(@"2---%@",[NSThread currentThread]);      // 打印当前线程
        }
    });

    dispatch_sync(queue, ^{
        // 追加任务3
        for (int i = 0; i < 2; ++i) {
            [NSThread sleepForTimeInterval:2];              // 模拟耗时操作
            NSLog(@"3---%@",[NSThread currentThread]);      // 打印当前线程
        }
    });
}

//异步执行 + 主队列
- (void)asyncAndMain{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"asyncAndMain------begin");
    
    dispatch_queue_t queue = dispatch_get_main_queue();
    dispatch_async(queue, ^{
        //添加任务1
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------ %@",[NSThread currentThread]);
        }
        //追加任务2
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    //追加任务3
    for (int i = 0; i < 2; i++) {
        [NSThread sleepForTimeInterval:2];
        NSLog(@"3------%@",[NSThread currentThread]);
    }
    NSLog(@"asyncAndMain------end");
}
//线程间通信
- (void)communication{
    //获取全局并发队列
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    //获取主队列
    dispatch_queue_t mainQueue =  dispatch_get_main_queue();

    //异步追加任务
    dispatch_async(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    
    //异步追加任务
    dispatch_async(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
    //回到主线程
    dispatch_async(mainQueue, ^{
        //追加到主线程中完成的任务
        [NSThread sleepForTimeInterval:2];
        NSLog(@"2-------%@",[NSThread currentThread]);
    });
}

//GCD栏栅方法;dispatch_barrier_async
- (void)barrier{
    //创建一个并发队列
    dispatch_queue_t queue = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_CONCURRENT);
    //添加任务一
    dispatch_async(queue, ^{
        [NSThread sleepForTimeInterval:2];
        NSLog(@"1------%@",[NSThread currentThread]);
    });
    
    //添加任务二
    dispatch_async(queue, ^{
        [NSThread sleepForTimeInterval:2];
        NSLog(@"2------%@",[NSThread currentThread]);
    });
    
    //添加栏栅方法
    dispatch_barrier_async(queue, ^{
        [NSThread sleepForTimeInterval:2];
        NSLog(@"barrier------%@",[NSThread currentThread]);
    });
    
    //添加任务三
    dispatch_async(queue, ^{
        [NSThread sleepForTimeInterval:2];
        NSLog(@"3------%@",[NSThread currentThread]);
    });
    
    //添加任务四
    dispatch_async(queue, ^{
        [NSThread sleepForTimeInterval:2];
        NSLog(@"4------%@",[NSThread currentThread]);
    });
    
}

//GCD延时方法:dispatch_after
- (void)after{
    //
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"asyncMain------begin");
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        //2秒后追加任务到主队列 并开始执行
        NSLog(@"after------%@",[NSThread currentThread]);
    });
}

//GCD单例方法
- (void)once{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSLog(@"啦啦啦");
    });
    
}

//GCD快速迭代方法:dispatch_apply
- (void)apply{
    //获取全局队列
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    NSLog(@"apply------begin");
    dispatch_apply(6, queue, ^(size_t index) {
        NSLog(@"%zd------%@",index,[NSThread currentThread]);
    });
    NSLog(@"apply------end");
}

/**
 
 组队列;dispatch_gorup
 
 */
//监听队列组
- (void)groupNotify{
    //打印当前线程
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"group------begin");
    
    //创建一个组队列
    dispatch_group_t group = dispatch_group_create();
    dispatch_group_async(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        //添加任务一
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    
    dispatch_group_async(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        //添加任务二
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    
    dispatch_group_async(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        //添加任务三
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
    });
    
    //等待前面的异步任务执行完  回到主线程执行一下任务
    dispatch_group_notify(group, dispatch_get_main_queue(), ^{
        
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"4------%@",[NSThread currentThread]);
        }
    });
}

//线程等待(暂停线程)dispatch_group_wait
- (void)groupWait{
    //打印当前线程
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"group------begin");
    
    //创建一个组队列
    dispatch_group_t group = dispatch_group_create();
    
    dispatch_group_async(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
       //添加任务一
        for (int i = 0; i < 2; i++) {
            [NSThread currentThread];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
    });
    
    dispatch_group_async(group, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
       //追加任务二
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
    });
    
    //等待上面的任务全部完成后 往下继续执行(会阻塞当前线程)
    dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
    NSLog(@"group------end");
}

//dispatch_group_enter、dispatch_group_leave
- (void)groupEnterAndLeave{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"group------begin");
    
    //创建一个组队列
    dispatch_group_t group = dispatch_group_create();
    //获取全局队列
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    //进入组队列
    dispatch_group_enter(group);
    //追加任务一
    dispatch_async(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
        }
        dispatch_group_leave(group);
    });
    
    //进入组队列
    dispatch_group_enter(group);
    //追加任务二
    dispatch_async(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"2------%@",[NSThread currentThread]);
        }
        dispatch_group_leave(group);
    });
    
    //等待前面的线程全部结束 回到主线程
    dispatch_group_notify(group, dispatch_get_main_queue(), ^{
        [NSThread sleepForTimeInterval:2];
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"3------%@",[NSThread currentThread]);
        }
        NSLog(@"group------end");
    });
}

//GCD信号量:dispatch_semaphore
- (void)semaphoreSync{
    NSLog(@"current------%@",[NSThread currentThread]);
    NSLog(@"semaphore------begin");
    
    //获取全局队列
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    //创建一个 信号量总和 为 0的信号量 semaphore
    dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
    __block int number = 0;
    //追加任务一
    dispatch_async(queue, ^{
        for (int i = 0; i < 2; i++) {
            [NSThread sleepForTimeInterval:2];
            NSLog(@"1------%@",[NSThread currentThread]);
            number = 100;
            //发送给semaphore一个信号 让信号总量加一
        }
        dispatch_semaphore_signal(semaphore);

    });
    //等待上面的线程执行完以后 计数减一 执行下面的线程
    dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);
    NSLog(@"semaphore------end,number = %d",number);
}

/**
线程安全和线程同步(为线程加锁)
*/
/**
 非线程安全(不使用semaphore)
 初始化火车票数量、卖票窗口(非线程安全)、并开始卖票
 */
- (void)initTicketStatusNotSafe{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"semaphore------begin");
    //初始化票总数
    self.ticketSurplusCount = 50;
    //队列一 北京火车票售卖窗口
    dispatch_queue_t queue1 = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    //队列二 上?;鸪灯笔勐舸翱?    dispatch_queue_t queue2 = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    //转化为弱引用
    __weak typeof(self) weakSelf  = self;
    //异步执行任务 北京
    dispatch_async(queue1, ^{
        [weakSelf saleTicketNotSafe];
    });
    //上海
    dispatch_async(queue2, ^{
        [weakSelf saleTicketNotSafe];
    });
}
/**
 售卖火车票系统 算法实现
 */
- (void)saleTicketNotSafe{
    //恒为真
    while (1) {
        if (self.ticketSurplusCount > 0) {
            self.ticketSurplusCount --;
            NSLog(@"%@",[NSString stringWithFormat:@"剩余票数:%ld 窗口:%@", self.ticketSurplusCount,[NSThread currentThread]]);
            [NSThread sleepForTimeInterval:0.2];
            
        }else{
            //已经卖完 关闭售票窗口
            NSLog(@"所有车票已经售完");
            break;
        }
    }
}

/**
 线程安全(使用semaphore加锁)
 */
- (void)initTicketStatusSafe{
    NSLog(@"currentThread------%@",[NSThread currentThread]);
    NSLog(@"semaphore------begin");
    //初始化信号量为1
    semaphoreLock = dispatch_semaphore_create(1);
    //初始化余票总数
    self.ticketSurplusCount = 50;
    //初始化北京串行队列
    dispatch_queue_t queue1 = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    //初始化上海队列
    dispatch_queue_t queue2 = dispatch_queue_create("com.ceshi.tsou", DISPATCH_QUEUE_SERIAL);
    
    dispatch_async(queue1, ^{
        [self saleTicketsafe];
    });
    
    dispatch_async(queue2, ^{
        [self saleTicketsafe];
    });
}
/**
 售卖火车票系统 加锁算法实现
 */
- (void)saleTicketsafe{
    //发送一个信号 阻塞下一个线程
    while (1) {
        //加锁
        dispatch_semaphore_wait(semaphoreLock, DISPATCH_TIME_FOREVER);

        if (self.ticketSurplusCount > 0) {
            self.ticketSurplusCount --;
            //打印余票以及窗口
            NSLog(@"%@",[NSString stringWithFormat:@"剩余票数:%ld 窗口:%@",self.ticketSurplusCount,[NSThread currentThread]]);
            [NSThread sleepForTimeInterval:0.2];
        }else{
            //票已售完 显示提示
            NSLog(@"票已售完");
            //发送信号 开放线程 相当于解锁
            dispatch_semaphore_signal(semaphoreLock);
            break;
        }
        //解锁
        dispatch_semaphore_signal(semaphoreLock);
    }
    
}
- (void)viewDidLoad {
    
    [super viewDidLoad];
    
//    [self chuanXing];//串行队列的创建
//    [self bingXing];//并发队列的创建
//    [self getMainQueue];//获取主队列
//    [self quanJuQueue];//获取全局队列
//    [self syncAndConcurrent];//同步执行 + 并发队列
//    [self asyncAndConcurrent];//异步执行 + 并发队列
//    [self syncAndSerial];//同步执行 + 串行队列
//    [self asyncAndSerial];//异步执行 + 串行队列
//    [self syncAndMain];//同步执行 + 主队列
//    [NSThread detachNewThreadSelector:@selector(syncAndMain) toTarget:self withObject:nil];//开辟新线程调用 同步任务 + 主队列 不会造成线程死锁 会放进主线程中执行
//    [self asyncAndMain];//异步执行 + 主队列
//    [self communication];
//    [self barrier];
//    [self after];
//    [self once];
//    [self apply];
//    [self groupNotify];
//    [self groupWait];
//    [self groupEnterAndLeave];
    [self semaphoreSync];
//    [self initTicketStatusNotSafe];
    [self initTicketStatusSafe];
    //线程跑完 测试
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, self.view.frame.size.width - 200, 100)];
    label.text = @"线程已结束";
    label.textAlignment = NSTextAlignmentCenter;
    label.textColor = [UIColor redColor];
    label.font = [UIFont systemFontOfSize:15];
    [self.view addSubview:label];
    }


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

gitHub地址

最后编辑于
?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,029评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,238评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,576评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,214评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,324评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,392评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,416评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,196评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,631评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,919评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,090评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,767评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,410评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,090评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,328评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,952评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,979评论 2 351

推荐阅读更多精彩内容

  • iOS多线程-GCD GCD的简介 GCD,全称为 Grand Central Dispatch ,是iOS用来管...
    kscorpio阅读 2,280评论 1 51
  • 多线程学习笔记-GCD 我把这篇文章所用到的代码总结到这里->GCD项目总结下载地址-GCD-wxk可以下载参考 ...
    wxkkkkk阅读 532评论 0 2
  • 一.线程同步 线程同步,字面意思好像是多个线程一起工作.其实不然,这里的同是协同,互相配合的意思,也就是多个线程互...
    李永开阅读 1,356评论 0 0
  • 1.GCD简介GCD是苹果开发的一个多核线程的解决方法,GCD和其它的多线程技术方案想比,使用起来更加简单和方便....
    ZhongXi阅读 4,938评论 2 26
  • 延迟执行任务函数dispatch_after(.....)-(void)touchesBegan:(NSSet ...
    deve_雨轩阅读 760评论 0 20