可能重复:
类中的 pthread 函数
谁能举一个简单的例子,这样我就可以理解如何在课堂上使用 pthread ?
互联网上的例子太复杂了,我不明白这个概念。
我在不使用类的时候写了一个代码。
编辑:
我需要编译这样的东西:
#include<stdio.h>
#include<pthread.h>
using namespace std;
class test
{
private:
int i = 0;
public:
static void *fun()
{
i = i+1;
cout << i<< endl;
}
};
int main()
{
pthread_t th;
test newTest;
pthread_create(&th, NULL, newTest.fun, NULL);
}