zoukankan      html  css  js  c++  java
  • iOS pthread

     

        pthread 是属于 POSIX 多线程开发框架

       创建线程的方法:pthread_create

       

        参数含义:

         1.指向线程代号的指针

         2.线程的属性

         3.指向函数的指针

         4.传递给该函数的参数

         

         返回值

         - 如果是0,标示正确

         - 如果非0,标示错误代码

         

         void *   (*)      (void *)

         返回值   (函数指针)  (参数)

         void *  和OC中的  id 是等价的!

     

       int result = pthread_create(&threadId, NULL, &demo, (__bridge  void *)(str));

       

        if (result == 0) {

            NSLog(@"OK");

        }else{

            NSLog(@"error %d",result);

        }

     

     

     

     

    响应方法:

    void * demo(void * param){

        NSLog(@"%@ %@",[NSThread currentThread],param);

        

        return NULL;

    }

     

     

     

  • 相关阅读:
    对于数据的测试
    绕过前端,直接调用后端接口的可能性
    API接口自动化之3 同一个war包中多个接口做自动化测试
    API接口自动化之2 处理http请求的返回体,对返回体做校验
    API接口自动化之1 常见的http请求
    DB中字段为null,为空,为空字符串,为空格要怎么过滤取出有效值
    Linux 常用的压缩命令有 gzip 和 zip
    SQL 常用的命令
    JVM内存管理的机制
    Linux 常见命令
  • 原文地址:https://www.cnblogs.com/jukaiit/p/10021277.html
Copyright © 2011-2022 走看看