_beginthread()在c++中怎么用啊

#include<stdio.h>#include<process.h>inthello(){printf("hello\n");return0;}intmain(){_... #include <stdio.h>
#include <process.h>
int hello()
{
printf("hello\n");
return 0;
}
int main()
{
_beginthread(hello,0,NULL);
getchar();
return 0;
}

同样的代码 源文件保存成a.c就能运行 保存为a.cpp就编译失败
错误提示:
error C2664: '_beginthread' : cannot convert parameter 1 from 'int (void)' to 'void (__cdecl *)(void *)'
None of the functions with this name in scope match the target type
展开
 我来答
空雪梦见
2015-06-30 · TA获得超过5598个赞
知道大有可为答主
回答量:2522
采纳率:75%
帮助的人:1200万
展开全部
提示说得很清楚,参数类型不对。
这个例子里,你可以强制转换:

_beginthread((void(*)(void*))hello,0,NULL);
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式