今天在寻找程序异常问题定位方法时,从网络上拷贝到一段如下代码:
#include <stdio.h>
#include <process.h>
#include <windows.h>
const int cnThreadnum = 4;
UINT WINAPI Worker(LPVOID lpParam)
{
srand((DWORD)lpParam);
DWORD dwTid = GetCurrentThreadId();
int k=100;
while(k--)
{
printf("tid[%u] tmp = %d/n", dwTid, RAND_MAX/(rand()%cnThreadnum));
Sleep(10);
}
return 0;
}
int main(int argc, char* argv[])
{
HANDLE hThd[cnThreadnum] = {0};
for(DWORD i=0; i<cnThreadnum; i++)
{
hThd[i] = (HANDLE)_beginthreadex(NULL, 0, Worker, (LPVOID)i, 0, NULL);
}
printf("Wait.../n");
WaitForMultipleObjects(cnThreadnum, hThd, TRUE, INFINITE);
for(int k=0; k<cnThreadnum; k++)
{
CloseHandle(hThd[k]);
}
printf("Finish!/n");
system("pause");
return 0;
}
新建一个Win32控制台工程后将上述代码拷贝到工程中,编译时出现如下错误:
--------------------Configuration: Exception - Win32 Debug--------------------
Compiling...
StdAfx.cpp
Compiling...
Exception.cpp
d:/projectdev/exception/exception.cpp(37) : error C2065: '_beginthreadex' : undeclared identifier
Error executing cl.exe.
Exception.exe - 1 error(s), 0 warning(s)
用VA可以定位到,函数'_beginthreadex'是在头文件<process.h>中声明的,而且可以看出在程序开始时,头文件<process.h>也已经包含了,但编译时为什么总是失败。
【解决办法】
将工程按照下面的方式进行设置后重新编译,问题就可以解决:
VS2010:Project->Settings->C/C++->Code Generation->Use run-time libray->Debug Multithread,或 Multithread,或 Debug Multithread DLL, 或 Multithread DLL都可以,即Use run-time library需要使用多线程的。
VC 6.0:工程->设置->常规选项卡->Microsoft基础类,选择"使用MFC作为静态链接库"或者"使用MFC作为共享DLL"