opencv出现问题,错误error C2660: “fopen_s”: 函数不接受 2 个参数
求问怎么改void_setDestination(constchar*name){if(name==NULL){stream=stdout;}else{stream=fo...
求问怎么改
void _setDestination(const char* name)
{
if (name==NULL) {
stream = stdout;
}
else {
stream = fopen_s(name, "w");
if (stream == NULL) {
stream = stdout;
}
}
}
是这一句的问题stream = fopen_s(name, "w"); 展开
void _setDestination(const char* name)
{
if (name==NULL) {
stream = stdout;
}
else {
stream = fopen_s(name, "w");
if (stream == NULL) {
stream = stdout;
}
}
}
是这一句的问题stream = fopen_s(name, "w"); 展开
展开全部
对于fopen_s来说,得定义另外一个变量errno_t err,err = fopen_s(&fp,filename,"w"),打开文件成功返回0,失败返回非0。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用fopen就可以了。
fopen_s和fopen接口不一样。
fopen_s和fopen接口不一样。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将问题句改为:
fopen_s(&fp,"name","w");试试看呐
fopen_s(&fp,"name","w");试试看呐
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询