微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/c/119609.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐