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

C/C++ - 多线程

时间:2017-12-28 21:44:52      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:blog   例子   c++   学习   error   put   hello   代码   自己   

#include <stdio.h>
#include <pthread.h>

int i = 0;

void*Run(void*args) {
    i++;
    printf("%d:Hello World!\n", i);
}

int main() {
    pthread_t tids[5];
    int ret;

    for(int i = 0; i < 5; i++) {
        if((ret = pthread_create(&tids[i], NULL, Run, NULL)) != 0)
            puts("Create error!");
    }
    pthread_exit(NULL);

    return 0;
}
  代码中函数pthread_create(&tids[i], NULL, Run, NULL)顾名思义创建一个线程,参数3是自己定义的函数,参数4是函数Run的形参。
  以这个例子慢慢进入多线程的学习。

C/C++ - 多线程

标签:blog   例子   c++   学习   error   put   hello   代码   自己   

原文地址:https://www.cnblogs.com/darkchii/p/8137530.html

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