码迷,mamicode.com
首页 > 编程语言 > 详细

OC 线程操作1 - pthread

时间:2018-06-22 13:45:20      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:rest   app   pam   interface   S3   apple   int   bsp   pthread   

#import "ViewController.h"

#import <pthread.h> //1.需要包含这个头文件

 

@interface ViewController ()

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    //2.创建线程对象

    pthread_t p;

    

    //3.创建线程

    /*

     参数1 : pthread_t  _Nullable *restrict _Nonnull, 线程对象,传递地址

     参数2 : const pthread_attr_t *restrict _Nullable, 线程属性 , NULL

     参数3 : void * _Nullable (* _Nonnull)(void * _Nullable), 指向函数的指针

     参数4 : void *restrict _Nullable, 函数需要的参数

     */

    pthread_create(&p, NULL, task, NULL);

}

 

void *task(void *pama){

    return NULL;

}

 

@end

OC 线程操作1 - pthread

标签:rest   app   pam   interface   S3   apple   int   bsp   pthread   

原文地址:https://www.cnblogs.com/qingzZ/p/9212268.html

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