我为线程编写了一个非常简单的代码。由于我对此很陌生,因此我不知道提到的错误。
class opca_hello
{
public:
void hello();
}
void opca_hello::hello()
{
printf ("hello \n");
}
int main(int argc, char **argv)
{
opca_hello opca;
pthread_t thread1, thread2;
pthread_create( &thread1, NULL, opca.hello, NULL);
pthread_join( thread1, NULL);
return 0;
}
错误:“void (opca_hello::)()”类型的参数与“void* (*)(void*)”不匹配