c – 如何将整数传递给CreateThread()?

前端之家收集整理的这篇文章主要介绍了c – 如何将整数传递给CreateThread()?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将int参数传递给CreateThread回调函数?我试试看:
DWORD WINAPI mHandler(LPVOID sId) {
...
arr[(int)sId]
...
}

int id=1;
CreateThread(NULL,NULL,mHandler,(LPVOID)id,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,id,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
}
原文链接:https://www.f2er.com/c/119609.html

猜你在找的C&C++相关文章