使用c ++在类中使用pthread

时间:2012-11-12 10:20:46

标签: c++ pthreads

  

可能重复:
  pthread Function from a Class

任何人都可以给出一个简单的例子,这样我就能理解如何在课堂上使用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);
}

0 个答案:

没有答案