/**
提问:是否开线程?是否顺序执行?come here 的位置?
并发队列+异步
1.开启新线程、异步执行所有任务、拥有一个线程池 不是每次都创建新的线程
*/
- (void)test1 {
// 1. 队列
dispatch_queue_t q = dispatch_queue_create("itheima", DISPATCH_QUEUE_CONCURRENT);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_async(q, ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
并发队列+同步
1.不会创建新线程 都在主线程执行
*/
- (void)test2 {
NSLog(@"currentThread:%@", [NSThread currentThread]);
// 1. 队列
dispatch_queue_t q = dispatch_queue_create("itheima", DISPATCH_QUEUE_CONCURRENT);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_sync(q, ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);// <NSThread: 0x604000070200>{number = 1, name = main} - 1
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
同步队列+异步
1.只会开启一个新的线程
2.异步是针对主线程的。任务还是同步的。
*/
- (void)test3 {
NSLog(@"currentThread:%@\n", [NSThread currentThread]);
// 1. 队列
dispatch_queue_t q = dispatch_queue_create("itheima", DISPATCH_QUEUE_SERIAL);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_async(q, ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
同步队列+同步
1.不会创建新线程 都在主线程执行
*/
- (void)test4 {
NSLog(@"currentThread:%@\n", [NSThread currentThread]);
// 1. 队列
dispatch_queue_t q = dispatch_queue_create("itheima", DISPATCH_QUEUE_SERIAL);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_sync(q, ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
主队列+异步
1.不开启新线程 直接再主线程执行
2.异步是针对主线程的。任务还是同步的。
*/
- (void)test5 {
NSLog(@"currentThread:%@\n", [NSThread currentThread]);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_async(dispatch_get_main_queue() , ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
主队列+同步
1.死锁
*/
- (void)test6 {
NSLog(@"currentThread:%@\n", [NSThread currentThread]);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_sync(dispatch_get_main_queue(), ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
/**
提问:是否开线程?是否顺序执行?come here 的位置?
并发队列+栅栏
1.开启新线程 同步执行
*/
- (void)test7 {
NSLog(@"mainThread:%@\n", [NSThread currentThread]);
// 1. 队列
dispatch_queue_t q = dispatch_queue_create("itheima", DISPATCH_QUEUE_CONCURRENT);
// 2. 执行任务
for (int i = 0; i < 100; ++i) {
dispatch_barrier_async(q, ^{
NSLog(@"%@ - %d", [NSThread currentThread], i);
});
}
NSLog(@"come here");
}
各种队列、同步、异步
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...