iOS精选面试题iOS小集

iOS 线程简述

2020-08-10  本文已影响0人  移动端_小刚哥

一、 串行队列和并行队列

我们先看一下队列的概念。

队列是先进先出(FIFO)结构的,其主要的任务主要是负责线程的创建、回收工作,不论什么队列和什么任务都不需要程序员参与,减轻了程序员的工作。

队列主要分为:

  1. GCD队列
  1. 自定义队列

下面看一张非常重要的图。


img01

摘抄自https://www.jianshu.com/p/cc875ef54aa9

二、队列和执行方式的随机组合

执行方式有同步执行sync和异步执行 async两种
自定义队列有串行队列serial和并行队列concurrent加上系统的主队列mainQueue和全局队列globalQueue,共四种

那么两种执行方式和四种队列共有8种组合,分别为:

1. 串行队列+异步执行
//串行队列+异步执行
-(void)serialAndAsync{
    
    NSLog(@"当前线程--%@",[NSThread currentThread]);
    //第二个参数传NULL或者0也表示串行队列
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL);
    for (int i=0; i<5; i++) {
        
        void(^task)(void) = ^{
            NSLog(@"%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queue, task);
    }
    
}
当前线程--<NSThread: 0x6000026b0240>{number = 1, name = main}
0--<NSThread: 0x600002dc4000>{number = 5, name = (null)}
1--<NSThread: 0x600002dc4000>{number = 5, name = (null)}
2--<NSThread: 0x600002dc4000>{number = 5, name = (null)}
3--<NSThread: 0x600002dc4000>{number = 5, name = (null)}
4--<NSThread: 0x600002dc4000>{number = 5, name = (null)}

结合执行结果示例可知

2. 串行队列+同步执行
//串行队列+同步执行
-(void)serialAndSync{
   NSLog(@"当前线程%@",[NSThread currentThread]);
   dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL);
   for (int i=0; i<5; i++) {
       void(^task)(void) = ^{
           NSLog(@"%d--%@",i,[NSThread currentThread]);
       };
       dispatch_sync(queue, task);
   }
}
当前线程<NSThread: 0x600001fa8e80>{number = 1, name = main}
0--<NSThread: 0x600001fa8e80>{number = 1, name = main}
1--<NSThread: 0x600001fa8e80>{number = 1, name = main}
2--<NSThread: 0x600001fa8e80>{number = 1, name = main}
3--<NSThread: 0x600001fa8e80>{number = 1, name = main}
4--<NSThread: 0x600001fa8e80>{number = 1, name = main}

结合执行结果示例可知

3. 并行队列+同步执行
//并行队列+异步执行
-(void)concurrentAndAsync{
   dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
   for (int i=0; i<5; i++) {
       void(^task)(void) = ^{
           NSLog(@"%d--%@",i,[NSThread currentThread]);
       };
       dispatch_async(queue, task);
   }
}
当前线程<NSThread: 0x600003044f00>{number = 1, name = main}
4--<NSThread: 0x60000304f8c0>{number = 3, name = (null)}
2--<NSThread: 0x60000304d540>{number = 6, name = (null)}
0--<NSThread: 0x600003064540>{number = 7, name = (null)}
1--<NSThread: 0x600003010800>{number = 5, name = (null)}
3--<NSThread: 0x600003064f80>{number = 4, name = (null)}

结合执行结果示例可知

⚠️注:当我们没有对子线程数量做限制时系统并不会无限量创建子线程

4. 并行队列+同步执行
//并行队列+同步执行
-(void)concurrentAndSync{
   NSLog(@"当前线程%@",[NSThread currentThread]);
   dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
   for (int i=0; i<5; i++) {
       void(^task)(void) = ^{
           NSLog(@"%d--%@",i,[NSThread currentThread]);
       };
       dispatch_sync(queue, task);
   }
}
当前线程<NSThread: 0x6000020b85c0>{number = 1, name = main}
0--<NSThread: 0x6000020b85c0>{number = 1, name = main}
1--<NSThread: 0x6000020b85c0>{number = 1, name = main}
2--<NSThread: 0x6000020b85c0>{number = 1, name = main}
3--<NSThread: 0x6000020b85c0>{number = 1, name = main}
4--<NSThread: 0x6000020b85c0>{number = 1, name = main}

结合执行结果示例可知

5. 主队列+同步执行
//主队列+同步执行
-(void)mainQueueAndSync{
    NSLog(@"当前线程%@",[NSThread currentThread]);
    dispatch_queue_t queue = dispatch_get_main_queue();
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"%d--%@",i,[NSThread currentThread]);
        };
        dispatch_sync(queue, task);
    }
}

崩溃了

Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)

分析原因:

那么对于主线程来说接收了6个任务:

  1. mainQueueAndSync任务
  2. 任务1
  3. 任务2
  4. 任务3
  5. 任务4
  6. 任务5

对主线程来说先要完成mainQueueAndSync任务才会去执行下一个任务,也就是任务1,但是mainQueueAndSync任务执行完成的前提是任务1到任务5都执行完毕,所以就出现了线程等待,一直等到死...

如何破解线程死锁,那就是将mainQueueAndSync任务放到子线程去执行

//主队列+同步执行
-(void)mainQueueAndSync{
    NSLog(@"当前线程%@",[NSThread currentThread]);
    
    dispatch_queue_t queue = dispatch_get_main_queue();
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"%d--%@",i,[NSThread currentThread]);
        };
        [NSThread detachNewThreadWithBlock:^{
            dispatch_sync(queue, task);
        }];
    }
}
当前线程<NSThread: 0x600000784280>{number = 1, name = main}
0--<NSThread: 0x600000784280>{number = 1, name = main}
1--<NSThread: 0x600000784280>{number = 1, name = main}
2--<NSThread: 0x600000784280>{number = 1, name = main}
3--<NSThread: 0x600000784280>{number = 1, name = main}
4--<NSThread: 0x600000784280>{number = 1, name = main}
6. 主队列+异步执行
//主队列+异步执行
-(void)mainQueueAndAsync{
    NSLog(@"当前线程%@",[NSThread currentThread]);
    dispatch_queue_t queue = dispatch_get_main_queue();
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queue, task);
    }
}
当前线程<NSThread: 0x60000396cec0>{number = 1, name = main}
0--<NSThread: 0x60000396cec0>{number = 1, name = main}
1--<NSThread: 0x60000396cec0>{number = 1, name = main}
2--<NSThread: 0x60000396cec0>{number = 1, name = main}
3--<NSThread: 0x60000396cec0>{number = 1, name = main}
4--<NSThread: 0x60000396cec0>{number = 1, name = main}

结合执行结果示例可知

7. 全局队列+异步执行
//全局队列+异步执行
-(void)globalQueueAndAsync{
   NSLog(@"当前线程%@",[NSThread currentThread]);
   dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
   for (int i=0; i<5; i++) {
       void(^task)(void) = ^{
           NSLog(@"%d--%@",i,[NSThread currentThread]);
       };
       dispatch_async(queue, task);
   }
}
当前线程<NSThread: 0x60000068cf00>{number = 1, name = main}
0--<NSThread: 0x6000006dc200>{number = 5, name = (null)}
3--<NSThread: 0x60000069cec0>{number = 7, name = (null)}
2--<NSThread: 0x6000006de500>{number = 6, name = (null)}
1--<NSThread: 0x6000006ca400>{number = 4, name = (null)}
4--<NSThread: 0x6000006dc7c0>{number = 8, name = (null)}

结果同并行队列+异步执行一样,全局队列本身就是一个并行队列

8. 全局队列+同步执行
//全局队列+同步执行
-(void)globalQueueAndSync{
   NSLog(@"当前线程%@",[NSThread currentThread]);
   dispatch_queue_t queue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
   for (int i=0; i<5; i++) {
       void(^task)(void) = ^{
           NSLog(@"%d--%@",i,[NSThread currentThread]);
       };
       dispatch_sync(queue, task);
   };
   
}
当前线程<NSThread: 0x600002b98100>{number = 1, name = main}
0--<NSThread: 0x600002b98100>{number = 1, name = main}
1--<NSThread: 0x600002b98100>{number = 1, name = main}
2--<NSThread: 0x600002b98100>{number = 1, name = main}
3--<NSThread: 0x600002b98100>{number = 1, name = main}
4--<NSThread: 0x600002b98100>{number = 1, name = main}

结果同并行队列+同步执行一样

img02

三、 全局队列的优先级

/*!
 * @typedef dispatch_queue_priority_t
 * Type of dispatch_queue_priority
 *
 * @constant DISPATCH_QUEUE_PRIORITY_HIGH
 * Items dispatched to the queue will run at high priority,
 * i.e. the queue will be scheduled for execution before
 * any default priority or low priority queue.
 *
 * @constant DISPATCH_QUEUE_PRIORITY_DEFAULT
 * Items dispatched to the queue will run at the default
 * priority, i.e. the queue will be scheduled for execution
 * after all high priority queues have been scheduled, but
 * before any low priority queues have been scheduled.
 *
 * @constant DISPATCH_QUEUE_PRIORITY_LOW
 * Items dispatched to the queue will run at low priority,
 * i.e. the queue will be scheduled for execution after all
 * default priority and high priority queues have been
 * scheduled.
 *
 * @constant DISPATCH_QUEUE_PRIORITY_BACKGROUND
 * Items dispatched to the queue will run at background priority, i.e. the queue
 * will be scheduled for execution after all higher priority queues have been
 * scheduled and the system will run items on this queue on a thread with
 * background status as per setpriority(2) (i.e. disk I/O is throttled and the
 * thread's scheduling priority is set to lowest value).
 */
#define DISPATCH_QUEUE_PRIORITY_HIGH 2
#define DISPATCH_QUEUE_PRIORITY_DEFAULT 0
#define DISPATCH_QUEUE_PRIORITY_LOW (-2)
#define DISPATCH_QUEUE_PRIORITY_BACKGROUND INT16_MIN

备注信息可以看到全局队列默认设置4种优先级,CPU按照优先级由高到低的顺序依次执行

//全局队列+同步执行之不同优先级
-(void)globalQueueAndSync{
    NSLog(@"当前线程%@",[NSThread currentThread]);
    dispatch_queue_t queueBackground =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);
    dispatch_queue_t queueLow =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0);
    dispatch_queue_t queueDefault =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_queue_t queueHigh =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"BACKGROUND%d--%@",i,[NSThread currentThread]);
        };
        dispatch_sync(queueBackground, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"LOW%d--%@",i,[NSThread currentThread]);
        };
        dispatch_sync(queueLow, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"DEFAULT%d--%@",i,[NSThread currentThread]);
        };
        dispatch_sync(queueDefault, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"HIGH%d--%@",i,[NSThread currentThread]);
        };
        dispatch_sync(queueHigh, task);
    };
    
}
当前线程<NSThread: 0x600002f6cd40>{number = 1, name = main}
BACKGROUND0--<NSThread: 0x600002f6cd40>{number = 1, name = main}
BACKGROUND1--<NSThread: 0x600002f6cd40>{number = 1, name = main}
BACKGROUND2--<NSThread: 0x600002f6cd40>{number = 1, name = main}
BACKGROUND3--<NSThread: 0x600002f6cd40>{number = 1, name = main}
BACKGROUND4--<NSThread: 0x600002f6cd40>{number = 1, name = main}
LOW0--<NSThread: 0x600002f6cd40>{number = 1, name = main}
LOW1--<NSThread: 0x600002f6cd40>{number = 1, name = main}
LOW2--<NSThread: 0x600002f6cd40>{number = 1, name = main}
LOW3--<NSThread: 0x600002f6cd40>{number = 1, name = main}
LOW4--<NSThread: 0x600002f6cd40>{number = 1, name = main}
DEFAULT0--<NSThread: 0x600002f6cd40>{number = 1, name = main}
DEFAULT1--<NSThread: 0x600002f6cd40>{number = 1, name = main}
DEFAULT2--<NSThread: 0x600002f6cd40>{number = 1, name = main}
DEFAULT3--<NSThread: 0x600002f6cd40>{number = 1, name = main}
DEFAULT4--<NSThread: 0x600002f6cd40>{number = 1, name = main}
HIGH0--<NSThread: 0x600002f6cd40>{number = 1, name = main}
HIGH1--<NSThread: 0x600002f6cd40>{number = 1, name = main}
HIGH2--<NSThread: 0x600002f6cd40>{number = 1, name = main}
HIGH3--<NSThread: 0x600002f6cd40>{number = 1, name = main}
HIGH4--<NSThread: 0x600002f6cd40>{number = 1, name = main}

同步执行严格按照FIFO顺序执行全局队列中的任务,这个时候优先级并没有起作用

//全局队列+异步执行之不同优先级
-(void)globalQueueAndSync{
    NSLog(@"当前线程%@",[NSThread currentThread]);
    dispatch_queue_t queueBackground =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);
    dispatch_queue_t queueLow =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0);
    dispatch_queue_t queueDefault =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_queue_t queueHigh =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"BACKGROUND%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueBackground, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"LOW%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueLow, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"DEFAULT%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueDefault, task);
    };
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"HIGH%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueHigh, task);
    };
    
}

这个我猜测执行结果应该按照high-default-low-background的顺序依此执行,但是事实并不是这样

当前线程<NSThread: 0x600000a00500>{number = 1, name = main}
DEFAULT1--<NSThread: 0x600000a14780>{number = 4, name = (null)}
DEFAULT3--<NSThread: 0x600000a1b5c0>{number = 7, name = (null)}
DEFAULT2--<NSThread: 0x600000a511c0>{number = 6, name = (null)}
DEFAULT4--<NSThread: 0x600000a4f800>{number = 8, name = (null)}
DEFAULT0--<NSThread: 0x600000a24680>{number = 5, name = (null)}
HIGH0--<NSThread: 0x600000a14980>{number = 3, name = (null)}
HIGH1--<NSThread: 0x600000a4eb40>{number = 9, name = (null)}
HIGH2--<NSThread: 0x600000a50140>{number = 10, name = (null)}
HIGH4--<NSThread: 0x600000a1b5c0>{number = 7, name = (null)}
HIGH3--<NSThread: 0x600000a4ed80>{number = 11, name = (null)}
LOW0--<NSThread: 0x600000a511c0>{number = 6, name = (null)}
LOW1--<NSThread: 0x600000a085c0>{number = 12, name = (null)}
LOW3--<NSThread: 0x600000a14980>{number = 3, name = (null)}
LOW4--<NSThread: 0x600000a24680>{number = 5, name = (null)}
LOW2--<NSThread: 0x600000a4eb40>{number = 9, name = (null)}
BACKGROUND2--<NSThread: 0x600000a50140>{number = 10, name = (null)}
BACKGROUND0--<NSThread: 0x600000a4f800>{number = 8, name = (null)}
BACKGROUND1--<NSThread: 0x600000a14780>{number = 4, name = (null)}
BACKGROUND3--<NSThread: 0x600000a1b500>{number = 13, name = (null)}
BACKGROUND4--<NSThread: 0x600000a25bc0>{number = 14, name = (null)}

将default和high优先级队列执行顺序调换之后,打印结果也跟着改变了

...
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"HIGH%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueHigh, task);
    };
    
    for (int i=0; i<5; i++) {
        void(^task)(void) = ^{
            NSLog(@"DEFAULT%d--%@",i,[NSThread currentThread]);
        };
        dispatch_async(queueDefault, task);
    };
...
HIGH1--<NSThread: 0x6000015a59c0>{number = 4, name = (null)}
HIGH2--<NSThread: 0x6000015d8940>{number = 5, name = (null)}
HIGH0--<NSThread: 0x6000015a5040>{number = 3, name = (null)}
HIGH3--<NSThread: 0x6000015d6040>{number = 6, name = (null)}
HIGH4--<NSThread: 0x6000015c1c00>{number = 7, name = (null)}
DEFAULT1--<NSThread: 0x6000015d8700>{number = 9, name = (null)}
DEFAULT0--<NSThread: 0x6000015d6140>{number = 8, name = (null)}
DEFAULT3--<NSThread: 0x6000015a59c0>{number = 4, name = (null)}
DEFAULT2--<NSThread: 0x6000015dd1c0>{number = 10, name = (null)}
DEFAULT4--<NSThread: 0x6000015d8940>{number = 5, name = (null)}

似乎high并没有比defaut优先级高,而是跟执行顺序又关系。
为什么?????
有大佬知道其中原委还望告知🙏

上一篇下一篇

猜你喜欢

热点阅读