我定义了一个类A,里面有个函数void * repairFileThread(void *arg);
为什么这样:
pthread_t tid;
pthread_create(&tid,NULL,repairFileThread,(void*)NULL);
编译的时候老是:
argument of type 'void* (A::)(void*)' does not match 'void* (*)(void*)'
如果我把pthread_create(&tid,NULL,repairFileThread,(void*)NULL);
改成pthread_create(&tid,NULL,&repairFileThread,(void*)NULL);就会报错
阿波罗的战车
动漫人物
相关分类