zoukankan      html  css  js  c++  java
  • 刀哥多线程串行队列gcd-04-dispatch_queue_serial

    串行队列

    特点

    • 先进先出的方式,顺序调度队列中的任务执行
    • 无论队列中所指定的执行任务函数是同步还是异步,都会等待前一个任务执行完成后,再调度后面的任务

    队列创建

    dispatch_queue_t queue = dispatch_queue_create("com.itheima.queue", DISPATCH_QUEUE_SERIAL);
    
    dispatch_queue_t queue = dispatch_queue_create("com.itheima.queue", NULL);

    串行队列演练

    • 串行队列 同步执行
    /**
     提问:是否开线程?是否顺序执行?come here 的位置?
     */
    - (void)gcdDemo1 {
        // 1. 队列
        dispatch_queue_t queue = dispatch_queue_create("com.itheima.queue", DISPATCH_QUEUE_SERIAL);
    
        // 2. 执行任务
        for (int i = 0; i < 10; ++i) {
            NSLog(@"--- %d", i);
    
            dispatch_sync(q, ^{
                NSLog(@"%@ - %d", [NSThread currentThread], i);
            });
        }
    
        NSLog(@"come here");
    }
    • 串行队列 异步执行
    /**
     提问:是否开线程?是否顺序执行?come here 的位置?
     */
    - (void)gcdDemo2 {
        // 1. 队列
        dispatch_queue_t q = dispatch_queue_create("itheima", NULL);
    
        // 2. 执行任务
        for (int i = 0; i < 10; ++i) {
            NSLog(@"--- %@ %d", [NSThread currentThread], i);
    
            dispatch_async(q, ^{
                NSLog(@"%@ - %d", [NSThread currentThread], i);
            });
        }
    
        NSLog(@"come here");
    }
  • 相关阅读:
    Extjs知识点汇总
    div设置滚动条内容任然显示不全
    win7 系统安装 docker
    docker常用命令
    cargo实现自动化部署远程jetty容器(非安全模式)
    win7 失去焦点解决方案
    jeecms 评论相关
    jeecms v8 网站访问量配置
    python——进程池
    python多进程编程常用到的方法
  • 原文地址:https://www.cnblogs.com/jiahao89/p/5118288.html
Copyright © 2011-2022 走看看