作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
如何给CreateThread回调函数传递int参数?我试了一下:
DWORD WINAPI mHandler(LPVOID sId) {
...
arr[(int)sId]
...
}
int id=1;
CreateThread(NULL, NULL, mHandler, (LPVOID)id, NULL, NULL);
但我收到警告:
warning C4311: 'type cast' : pointer truncation from 'LPVOID' to 'int'
warning C4312: 'type cast' : conversion from 'int' to 'LPVOID' of greater size
最佳答案
传递整数的地址而不是它的值:
// parameter on the heap to avoid possible threading bugs
int* id = new int(1);
CreateThread(NULL, NULL, mHandler, id, NULL, NULL);
DWORD WINAPI mHandler(LPVOID sId) {
// make a copy of the parameter for convenience
int id = *static_cast<int*>(sId);
delete sId;
// now do something with id
}
关于c++ - 如何将整数传递给 CreateThread()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12597205/
我是一名优秀的程序员,十分优秀!