今天在运行Windows程序设计书上的实例代码时报错: Compiling... EventHandle.cpp cpp(X) : error C2039: '_beginthreadex' : is not a member of '`global namespace'' cpp(X) : error C2065: '_beginthreadex' : undeclared identifier 原因:vc++默认的运行期库并不支持_beginthreadex函数。要想使用_beginthreadex函数,必须对VC进行设置,更换它默认使用的运行期库。 选择菜单命令"Project/Settings...", 第一步:打开标题为"Project Settings"的对话框,选择C/C++ 第二步:Category选择Code Generation 第三步:Using run-time library选择MultiThreaded DLL(似乎是除了single-thread之外的都可以)再调试,成功!
转自: http://blog.chinaunix.net/uid-13830775-id-97578.htmlbeginthreadex' : is not a member of '`global nam
最新推荐文章于 2024-07-04 02:51:06 发布