THREAD ERROR:无效使用非静态成员函数

时间:2017-01-05 01:45:01

标签: c++ multithreading compiler-errors non-static

我正在尝试用C ++理解线程,但我不知道如何解决这个问题。

我想调用两个线程来运行名为“createS”的函数,但是我收到了这个错误:

  

错误:无效使用非静态成员函数

我已经阅读了有关此主题的其他问题,但我真的不明白如何使我的代码有效。

有人可以解释一下我做错了什么并尝试帮助我找到解决方案吗?

test_class.cpp

void test_class::generateS(){

     map1=new multimap<double,vector<int>>;
     map2=new multimap<double,vector<int>>;

     thread thread_1( createS, 0, nCells/2, map1 ); 
     thread thread_2( createS, nCells/2, nCells, map2);

     thread_1.join();
     thread_2.join();
}

void test_class::createS(int startP, int endP, Costs *mapPointer){
     //i do some stuff
}

test_class.h

void createS(int start, int end, Costs *mapPointer);
void generateS();

1 个答案:

答案 0 :(得分:6)

 thread thread_1(&test_class::createS, this, 0, nCells/2, map1); 
 thread thread_2(&test_class::createS, this, nCells/2, nCells, map2);

注意:如果createS不依赖于对象状态,最好将其设为static类成员并按照您的方式调用。