作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 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/
我是一名优秀的程序员,十分优秀!