GCD的四种队列,两种函数和六种组合

//    四种队列

    //————————————————————————————————————————————————————————————————————————————————

//    //1、主队列(是串行队列)

//    dispatch_queue_t mainQueue = dispatch_get_main_queue();

//    

//    //2、全局并行队列

//    dispatch_queue_t concu = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);//两个参数,前者是优先级,后者目前用不到

//    

//    //3、创建串行队列

//    dispatch_queue_t queueSerial = dispatch_queue_create("je", DISPATCH_QUEUE_SERIAL);//两个参数,前者是名字(注意是c字符串),后者是队列类型。

//    

//    //4、创建并行队列(一般使用系统带的全局并行队列即可)

//    dispatch_queue_t queueConcu = dispatch_queue_create("jr2", DISPATCH_QUEUE_CONCURRENT);

    

    

    

    

//    六种组合

    //————————————————————————————————————————————————————————————————————————————————

    //1>同步执行+串行队(不会开辟子线程)

//    dispatch_sync(queueSerial, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"1111%@", [NSThread currentThread]);

//    });

//    

//    dispatch_sync(queueSerial, ^{

//        [NSThread sleepForTimeInterval:2];

//

//        NSLog(@"2222%@", [NSThread currentThread]);

//    });

    

    //2>同步执行+并行队列(不会开辟子线程)

//    dispatch_sync(queueConcu, ^{

//        [NSThread sleepForTimeInterval:2];

//

//        NSLog(@"3333%@", [NSThread currentThread]);

//    });

//    

//    dispatch_sync(queueConcu, ^{

//        [NSThread sleepForTimeInterval:2];

//

//        NSLog(@"4444%@", [NSThread currentThread]);

//    });

    

    

    //3、异步执行+串行队列(开启一条子线程,且顺序执行)

//    dispatch_async(queueSerial, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"5555%@", [NSThread currentThread]);

//    });

//    

//    dispatch_async(queueSerial, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"6666%@", [NSThread currentThread]);

//    });

    

    //4、异步执行+并行队列(开启多条子线程,且并发执行)

//    dispatch_async(queueConcu, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"5555%@", [NSThread currentThread]);

//    });

//    

//    dispatch_async(queueConcu, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"6666%@", [NSThread currentThread]);

//    });

    

    //5、异步执行+全局并行队列(开启多条子线程,且并发执行)

//    dispatch_async(concu, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"5555%@", [NSThread currentThread]);

//    });

//    

//    dispatch_async(concu, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"6666%@", [NSThread currentThread]);

//    });

    

    //6、(在主线程中)同步执行+main队列(死锁)NSLog添加到了主队列的最后,NSLog的执行需要等待主队列执行完之后执行,而主队列又在等NSLog执行完(注意与情况3的比较)

//    dispatch_sync(mainQueue, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"5555%@", [NSThread currentThread]);

//    });

//    

//    dispatch_sync(mainQueue, ^{

//        [NSThread sleepForTimeInterval:2];

//        NSLog(@"6666%@", [NSThread currentThread]);

//    });


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值