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

时间:2012-09-26 08:04:08

标签: c++ int createthread

如何将int参数传递给CreateThread回调函数?我试试看:

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

3 个答案:

答案 0 :(得分:6)

传递整数的地址而不是其值:

// 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
}

答案 1 :(得分:1)

您可以使用适当的类型消除此警告。在这种情况下,使用INT_PTR或DWORD_PTR(或任何其他_PTR类型)类型而不是int(请参阅MSDN中的Windows Data Types)。

DWORD WINAPI mHandler(LPVOID p)
{
    INT_PTR id=reinterpret_cast<INT_PTR>(p);
}
...

INT_PTR id = 123;
CreateThread(NULL, NULL, mHandler, reinterpret_cast<LPVOID>(id), NULL, NULL);

答案 2 :(得分:0)

我会用 CreateThread(..., reinterpret_cast<LPVOID>(static_cast<INT_PTR>(id)), ...); 在你的线程函数中 int my_int = static_cast<int>(reinterpret_cast<INT_PTR>(sId));

这也适用于枚举而不是 int。 它应该可以在 32 位和 64 位模式下工作。