iOS中线程管理可以通过以下四种方式
pthread
NSThread
GCD
NSOperationQueue
同步(sync)异步(async)
串行队列(serial)并行队列(concurrent)
1.同步(Synchronous) vs 异步(Asychronous)
同步会阻塞线程,顺序执行任务
异步不会阻塞当前前程。mian队列除外,在主线程中同步和异步执行都会阻塞主线程,且不会另开线程,永远不要使用sync向主队列中添加任务,
2.串行和并发队列
DISPATCH_QUEUE_SERIAL 串行队列
DISPATCH_QUEUE_CONCURRENT 并发队列
3.主队列和全局并发队列
dispatch_get_global_queue 全局并发队列
dispatch_get_main_queue 主队列串行队列(主队列中的任务都会在主线程上执行)
同步执行串行队列
dispatch_queue_t queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_SERIAL);// 串行队列
NSLog(@"串行队列中同步执行1 - %@", [NSThread currentThread]);
for(int i = 0;i<10;i++){
// 多次向串行队列同步添加任务
dispatch_sync(queue, ^{
NSLog(@"串行队列中同步执行21%d - %@",i, [NSThread currentThread]);
});
}
NSLog(@"串行队列中同步执行3 - %@", [NSThread currentThread]);
异步执行串行队列
dispatch_queue_t queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_SERIAL);
NSLog(@"串行队列中异步执行1 - %@", [NSThread currentThread]);
// 异步
for(int i = 0;i<10;i++){
dispatch_async(queue, ^{
NSLog(@"串行队列中异步执行21%d - %@",i, [NSThread currentThread]);
});
}
NSLog(@"串行队列中异步执行3 - %@", [NSThread currentThread]);
同步执行并行队列
dispatch_queue_t queue0 = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
NSLog(@"并发队列中同步执行1 - %@", [NSThread currentThread]);
for(int i = 0;i<10;i++){
dispatch_sync(queue0, ^{
NSLog(@"并发队列中同步执行21%d - %@",i, [NSThread currentThread]);
});
}
NSLog(@"并发队列中同步执行3 - %@", [NSThread currentThread]);
异步执行并发队列
dispatch_queue_t queue0 = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
NSLog(@"并发队列中异步执行1 - %@", [NSThread currentThread]);
for(int i = 0;i<10;i++){
// 多次添加任务
dispatch_async(queue0, ^{
NSLog(@"并行队列中异步执行21%d - %@",i, [NSThread currentThread]);
});
}
NSLog(@"并发队列中异步执行3 - %@", [NSThread currentThread]);
异步执行主队列
dispatch_queue_t queue = dispatch_get_main_queue();
NSLog(@"主队列中异步执行1 - %@", [NSThread currentThread]);
// 异步
for(int i = 0;i<8;i++){
dispatch_async(queue, ^{
NSLog(@"主队列中异步执行21%d - %@",i, [NSThread currentThread]);
});
}
for(int i = 0;i<5;i++){
NSLog(@"主队列中异步执行3%d - %@",i, [NSThread currentThread]);
}
主队列中,即使有异步任务,也会依次在主线程上执行,异步任务会等主线程上的任务执行完再执行。
同步执行主队列
dispatch_queue_t queue = dispatch_get_main_queue();
NSLog(@"主队列中同步执行1 - %@", [NSThread currentThread]);
// 同步
for(int i = 0;i<10;i++){
dispatch_sync(queue, ^{
NSLog(@"主队列中同步执行21%d - %@",i, [NSThread currentThread]);
});
}
NSLog(@"主队列中同步执行3 - %@", [NSThread currentThread]);
以上发生了死锁
同步和异步决定了是否开启新线程。mian队列除外,在主线程中同步和异步执行都会阻塞主线程,且不会另开线程,永远不要使用sync向主队列中添加任务
小结:
同步执行 串行队列 不开启新线程,在原线程中串行执行队列
同步执行 并行队列 不开启新线程,在原线程中串行执行队列
异步执行 串行队列 开启新线程,在新线程中串行执行队列
异步执行 并行队列 开启多个线程执行任务
补充:
异步执行主队列 不开启新线程,在原线程中串行执行队列,主线程任务执行完后任在主线程执行想异步执行的任务
死锁
了解了同步,异步,串行,并发后,看看以下代码
dispatch_queue_t queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_SERIAL);
NSLog(@"之前1 - %@", [NSThread currentThread]);
// 异步执行串行队列
dispatch_async(queue, ^{
NSLog(@"sync之前2 - %@", NSThread.currentThread);
dispatch_sync(queue, ^{
NSLog(@"sync3 - %@", NSThread.currentThread);
});
NSLog(@"sync之后4 - %@", NSThread.currentThread);
});
NSLog(@"之后5 - %@", NSThread.currentThread);
上面代码发生了死锁,3,4不执行,异步开启一个线程 执行串行队列 串行队列里同步会发生死锁!同样的,在主线程中,以下代码也发生了死锁
dispatch_queue_t queue = dispatch_queue_create("myQueue", DISPATCH_QUEUE_SERIAL);
NSLog(@"之前1 - %@", [NSThread currentThread]);
// 同步执行串行队列
dispatch_sync(queue, ^{
NSLog(@"sync之前2 - %@", NSThread.currentThread);
// 再次向串行队列中添加同步执行串行队列任务
dispatch_sync(queue, ^{
NSLog(@"sync3 - %@", NSThread.currentThread);
});
NSLog(@"sync之后4 - %@", NSThread.currentThread);
});
NSLog(@"之后5 - %@", NSThread.currentThread);
在主线程中死锁,3,4,5都没有执行
在一个线程中串行执行的队列里,再次添加同步执行该队列,会发生死锁。