gpt4 book ai didi

c++ - _begintheadex函数调用问题

转载 作者:行者123 更新时间:2023-11-28 01:08:47 25 4
gpt4 key购买 nike

我有一个 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);

最佳答案

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

recordLoop的定义是什么?

关于c++ - _begintheadex函数调用问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4671827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com