_begintheadex函数调用问题

时间:2011-01-12 17:23:24

标签: c++ multithreading winapi class visual-studio-express

我有一个SoundManager类,它包含一个名为'recordLoop'的函数。在SoundManager的构造函数中,我使用的是这段代码:

    recordHandle = (HANDLE)_beginthreadex(NULL,0,recordLoop,
        (void*)exinfo->length,CREATE_SUSPENDED,0);

它给了我以下错误:

   error C3867: 'SoundManager::recordLoop': function call missing argument list; use '&SoundManager::recordLoop' to create a pointer to member
   IntelliSense: argument of type "unsigned int (__stdcall SoundManager::*)(void *params)" is incompatible with parameter of type "unsigned int (__stdcall *)(void *)"

所以我尝试按照建议使用& SoundManager :: recordLoop,但它给了我这个:

   error C2664: '_beginthreadex' : cannot convert parameter 3 from 'unsigned int (__stdcall SoundManager::* )(void *)' to 'unsigned int (__stdcall *)(void *)'
   IntelliSense: argument of type "unsigned int (__stdcall SoundManager::*)(void *params)" is incompatible with parameter of type "unsigned int (__stdcall *)(void *)"

在类方法上启动线程是不合法的还是我做错了什么?

提前致谢

编辑:抱歉忘了添加recordLoop>。<这是:

 public:
 unsigned __stdcall recordLoop(void* params);

2 个答案:

答案 0 :(得分:3)

非静态类成员上启动线程是违法的,因为创建的线程无法知道this是什么。

recordLoop的定义是什么?

答案 1 :(得分:0)

我在施法方面遇到了同样的问题。 忽略上面答案中提到的所有其他问题,函数指针必须转换为_beginthreadex中的(unsigned(__stdcall*)(void*)),无论函数是什么类型或参数列表是什么。