- 论坛徽章:
- 0
|
Hi 大家好!
最近我涉及到Linux下多线程编程,我用C++语言,线程程序库是POSIX pthread.
我自己定义了一个类,线程函数和创建线程的函数都被封装在类中. 我用g++(3.4.2)编译它时,编译器提示错误:
ThreadFunctionInClass.cpp: In member function `void test::create_thread()'
ThreadFunctionInClass.cpp:20: error: argument of type `void*(test: (void*)' does not match `void*(*)(void*)'
如果我将线程函数 void *thread_function(void*){}放在类的外面就没有什么问题, 我不知道这到底是怎么回事. 我对C++的类型转换有点摸不着头脑。希望高手能给点指点,谢谢!
下面是我的程序代码:
#include <pthread.h>;
class test
{
public:
test(){}
~test(){}
void *thread_function(void*){}
void create_thread();
};
void test::create_thread()
{
pthread_t thread;
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
pthread_create(&thread, &attr, thread_function, NULL);
pthread_attr_destroy(&attr);
}
int main()
{
test testobj;
return 0;
} |
|