码迷,mamicode.com
首页 > 其他好文 > 详细

GCD名词解释-01-GCD

时间:2016-04-21 08:48:30      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:



技术分享 
技术分享
技术分享
技术分享
 
技术分享
技术分享
技术分享
技术分享
技术分享
技术分享
技术分享
技术分享
 
//
//  ViewController.m
//  GCD
//
//  Created by mac on 16/4/21.
//  Copyright © 2016年 mac. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    /**
     *  1)dispatch_sync:同步,不具备开启线程的能力
        2)dispatch_async:异步,具备开启线程的能力
     
        并发队列:多个任务可以同时执行
        串行队列:多个任务,排队执行,一个任务执行完,再执行下一个任务
     */
    
    //获取并发的全局队列
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    
    //将 任务 添加到 全局队列 中去 异步执行
    dispatch_async(queue, ^{
        
        NSLog(@"1111==%@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        
        NSLog(@"2222==%@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        
        NSLog(@"3333==%@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        
        NSLog(@"4444==%@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        
        NSLog(@"5555==%@", [NSThread currentThread]);
    });
}

@end

 

 
 
 
 
 
 
 
 
 

GCD名词解释-01-GCD

标签:

原文地址:http://www.cnblogs.com/foreveriOS/p/5415448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!