OC 线程操作 - GCD使用 -同步函数,异步函数,串行队列,并发队列
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ // GCD 开几条线程并不是我们可以控制的,而是系统来决定的, // [self asyncConcurrent];
// [self asyncSerial];
// [self syncConcurrent];
// [self syncSerial];
// [self test_get_global_queue];
// [self syncMain];//主线程操作直接死锁 [NSThread detachNewThreadSelector:@selector(syncMain) toTarget:self withObject:nil];//在子线程地调用,会直接执行,不会死锁
} /**
异步函数 + 并发队列 :会开启多条线程,队列中的任务是异步执行的(并发执行)(无序执行的)
*/
- (void)asyncConcurrent{ //1.创建任务
/*
参数1:const char * _Nullable label , C语言参数 字符串 ,标识符,为了区分队列的 推荐写法:反着写
参数2:dispatch_queue_attr_t _Nullable attr,队列类型
DISPATCH_QUEUE_CONCURRENT 并发,
DISPATCH_QUEUE_SERIAL 串行
*/
dispatch_queue_t queue = dispatch_queue_create("com.520it.www", DISPATCH_QUEUE_CONCURRENT); //2 2.1封装任务 2.2添加到任务队列中
/**
dispatch_async(<#dispatch_queue_t _Nonnull queue#>, <#^(void)block#>)
参数1:dispatch_queue_t _Nonnull queue 队列
参数2:<#^(void)block#> 要执行的任务
*/
dispatch_async(queue, ^{
NSLog(@"打印一下111 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下222 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下333 --- %@", [NSThread currentThread]);
});
} /**
异步函数 + 串行队列:可以开启线程,但是串行队列只会在同一个子线程执行
*/
- (void)asyncSerial{
dispatch_queue_t queue = dispatch_queue_create("asyncSerial", DISPATCH_QUEUE_SERIAL);
dispatch_async(queue, ^{
NSLog(@"打印一下111 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下222 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下333 --- %@", [NSThread currentThread]);
});
} /**
同步函数 + 并发队列 :不会会开启多条线程,不管后面是并发还是串行,任务是串行执行的
*/
- (void)syncConcurrent{ //1.创建任务 dispatch_queue_t queue = dispatch_queue_create("com.520it.www", DISPATCH_QUEUE_CONCURRENT); dispatch_sync(queue, ^{
NSLog(@"打印一下111 --- %@", [NSThread currentThread]);
}); dispatch_sync(queue, ^{
NSLog(@"打印一下222 --- %@", [NSThread currentThread]);
}); dispatch_sync(queue, ^{
NSLog(@"打印一下333 --- %@", [NSThread currentThread]);
});
} /**
同步函数 + 串行队列 :不会会开启多条线程,不管后面是并发还是串行,任务是串行执行的
*/
- (void)syncSerial{
dispatch_queue_t queue = dispatch_queue_create("syncSerial", DISPATCH_QUEUE_SERIAL);
dispatch_sync(queue, ^{
NSLog(@"打印一下111 --- %@", [NSThread currentThread]);
}); dispatch_sync(queue, ^{
NSLog(@"打印一下222 --- %@", [NSThread currentThread]);
}); dispatch_sync(queue, ^{
NSLog(@"打印一下333 --- %@", [NSThread currentThread]);
});
} /**
获得全局队列
*/
-(void)test_get_global_queue{ /**
获得全局并发队列 : 这个队列已经存在的, 我们只是获得
参数1 : long identifier 优先级,
DISPATCH_QUEUE_PRIORITY_HIGH 2
DISPATCH_QUEUE_PRIORITY_DEFAULT 0
DISPATCH_QUEUE_PRIORITY_LOW (-2)
DISPATCH_QUEUE_PRIORITY_BACKGROUND INT16_MIN 这是最低的优先级 参数2 : unsigned long flags 给未来使用, 总是给个0
*/
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
NSLog(@"打印一下111 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下222 --- %@", [NSThread currentThread]);
}); dispatch_async(queue, ^{
NSLog(@"打印一下333 --- %@", [NSThread currentThread]);
});
}
1.
2
3.
4.
5.
8.
OC 线程操作 - GCD使用 -同步函数,异步函数,串行队列,并发队列的更多相关文章
- OC 线程操作 - GCD使用 - 栅栏函数
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ //同步函数无需栅栏函数 //栅栏 ...
- OC 线程操作 - GCD使用 -线程通讯, 延迟函数和一次性代码
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{ // [self downImag ...
- OC 线程操作 - GCD队列组
1.队列组两种使用方法2.队列组等待 wait /** 新方法 队列组一般用在在异步操作,在主线程写队列组毫无任何作用 */ - (void)GCD_Group_new_group___notify{ ...
- OC 线程操作 - GCD快速迭代
- (void)forDemo{ //全都是在主线程操作的 ; i<; i++) { NSLog(@"--%@", [NSThread currentThread]); } ...
- iOS GCD, 同步,异步,串行队列,并行队列,dispatch_group
同步,指代码在同一个线程运行 异步,代码在另一个线程运行 串行队列,提交到该队列的block会顺序执行 并行队列,提交到该队列的block会并发执行 如果想等某一队列中所有block都执行完了在执行一 ...
- ios--进程/多线程/同步任务/异步任务/串行队列/并行队列(对比分析)
现在先说两个基本的概念,啥是进程,啥是线程,啥又是多线程;先把这两个总是给弄清再讲下面的 进程:正在进行的程序,我们就叫它进程. 线程:线程就是进程中的一个独立的执行路径.这句话怎么理解呢! 一个程序 ...
- OC线程操作-GCD介绍
1. GCD介绍 1.11.2 1.3 异步具备开启能力但是不是 一定可以开启 1.4 1.5 67. 8.
- GCD死锁,及同步、异步、串行和并行队列组合情形
一.概述 1)队列用来存储代码任务,线程用来运行代码任务: 2)main()函数作为程序入口,整个程序默认运行在主线程中,程序代码任务默认存放在主队列中: 3)以下所谓阻塞线程是针对主线程而言(子 ...
- iOS:对GCD中 同步、异步、并行、串行的见解
1.GCD-同步执行多线程时 GCD中不管向什么类型的队列加同步任务,实际上都会加到当前线程中(一般为主线程). 2.GCD-异步执行多线程时 GCD中不管向什么类 ...
随机推荐
- oracle如何导出owner和tablespace
原文转载至:http://bbs.csdn.net/topics/390819138 --用户创建语句,权限语句select dbms_metadata.get_ddl('USER','SCOTT') ...
- 深入理解HTTP协议之POST方法——ajax实例
作者:吴俊杰 性别:男 邮箱:sshroot@126.com 文章类型:原创 博客:http://www.cnblogs.com/voiphudong/ 一.说明http协议其实是一个相对比较简单的应 ...
- ue4 多相机分屏与小地图效果实现教程
转自:http://blog.csdn.net/shenmifangke/article/details/51940007 通过使用ue4的UI和rendertarget来实现 优点就是可以随意设置 ...
- JVM内部细节之三:字符串及字符串常量池
本人最近正在面试,然后注意到总是有公司喜欢考String的问题,如字符串连接有几种方式,它们之间有什么不同等问题:要不就是给一段代码问创建了几个对象.那么该不该问呢?我认为当面试有一定工作经验的求职者 ...
- Vue 封装js
//封装模块化文件 新建的.js文件 var storage = { set(key, value) { localStorage.setItem(key, JSON.stringify(value) ...
- python 之路06day
一 字符编码 1 字符编码的定义: 计算机要想工作必须通电,即用‘电’驱使计算机干活,也就是说‘电’的特性决定了计算机的特性.电的特性即高低电平(人类从逻辑上将二进制数1对应高电平,二进制数0 ...
- vb 读取指定路径文件名
Private Sub ExportCostSheetData() InsertRow("") InsertRow("Run 2:Export CostingSheet= ...
- python-log-env
logging.basicConfig(format="[%(asctime)s] %(filename)s[line:%(lineno)d] %(levelname)s: %(messag ...
- leetcode235
/** * Definition for a binary tree node. * public class TreeNode { * public int val; * public TreeNo ...
- 子元素scroll父元素容器不跟随滚动JS实现
仅供参考: function parentNotRoll($id){ var flg;//标记滚动方向,true-向下,false-向上 var $test = document.getElement ...