实例
以下简单的实例代码使用 pthread_create() 函数创建了 5 个线程,每个线程输出"Hello Runoob!":
实例
#include<iostream>// 必须的头文件#include<pthread.h>usingnamespacestd; #defineNUM_THREADS5// 线程的运行函数void* say_hello(void* args){ cout << "Hello Runoob!" << endl; return0;}intmain(){ // 定义线程的 id 变量,多个变量使用数组 pthread_ttids[NUM_THREADS]; for(inti = 0; i < NUM_THREADS; ++i) { //参数依次是:创建的线程id,线程参数,调用的函数,传入的函数参数 intret = pthread_create(&tids[i], NULL, say_hello, NULL); if(ret != 0) { cout << "pthread_create error: error_code=" << ret << endl; } } //等各个线程退出后,进程才结束,否则进程强制结束了,线程可能还没反应过来; pthread_exit(NULL);}
使用 -lpthread 库编译下面的程序:
$ g++ test.cpp -lpthread -o test.o
现在,执行程序,将产生下列结果:
$ ./test.o
HelloRunoob!
HelloRunoob!
HelloRunoob!
HelloRunoob!
HelloRunoob!