我想创建一个传递vector作为参数的线程。 但是我得到了以下错误:
error: invalid conversion from ‘int’ to ‘void* (*)(void*)’ [-fpermissive] error: initializing argument 3 of ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’ [-fpermissive]
我有以下代码:
#include <iostream>
#include <vector>
#include <pthread.h>
using namespace std;
void* func(void* args)
{
vector<int>* v = static_cast<vector<int>*>(args);
cout << "Vector size: " << v->size();
}
int main ( int argc, char* argv[] )
{
vector<int> integers;
pthread_t thread;
for ( int i = 0; i < 10; i++)
integers.push_back(i+1);
// overheat call
//pthread_create( &thread, NULL, func, static_cast<void*>(&integers));
pthread_create( &thread, NULL,func,&integers);
cout << "Main thread finalized" << endl;
return 0;
}
我怎么能做得好? 感谢
编辑:忘记了仅在此发布的内容;修改。
我遇到了新的错误:
error: stray ‘\305’ in program error: stray ‘\231’ in program
我想知道它。
提前致谢。
FINAL EDIT : Thanks to all. Sorry, I had another int var called func in other location. Thanks for your help.
答案 0 :(得分:5)
您忘记包含<vector>
;这会使编译器首先无法生成func
,从而无法将其识别为pthread_create
调用中的函数。
包含该代码后,您的代码应该编译(如果您愿意,可以删除static_cast<void*>
);但要正常工作,您还需要在向量超出范围之前调用pthread_join
,并从func
返回一个值。
更新:您的最新编辑已破坏代码:您应该不将func
强制转换为void*
,但将其保留为函数指针。这应该有效:
pthread_create(&thread, NULL, func, &integers);
stray ‘\305’ in program
之类的错误意味着您的代码中有一些奇怪的字符,尽管它们不在您发布的代码中。看一下错误消息所引用的行。