一、多线程管理机制
二、NSThread
三、NSOperation
四、GCD : 全称 Grand Central Dispatch ,一套底层 API,提供并发程序编写. 基本概念就是 Dispatch queue (调度队列),并且提供了三种队列:
- The main queue : 与mian线程功能一样,main queue 队列的任务在主线程中执行,main queue 通过 dispatch_get_main_queue 获取,由于与主线相关,所以是串行队列。
- 全局队列 global queue : 并行队列
- 用户队列
五、多线程同步
六、总结
时间: 2024-10-29 17:13:09