总结WIN32_FIND_DATA wfd; .... std::string filename=file_Pathname.substr(0,file_Pathname.find_last_of("\")+1)+wfd.cfilename;wfd.cfilename格式错误,WCHAR不能直接转换为string,使用多字节字符集就变成CHAR类型转string类型了。错误 1 error C2784: “std::_Vb_iterator<_Sizet,_Difft,_MycontTy> std::operator +(_Difft,std::_Vb_iterator<_Sizet,_MycontTy>)”: 无法从“WCHAR [260]”为“std::_Vb_iterator<_Sizet,_MycontTy>”推导 模板 参数 2 error C2784: “std::_Vb_const_iterator<_Sizet,std::_Vb_const_iterator<_Sizet,_MycontTy>)”: 无法从“WCHAR [260]”为“std::_Vb_const_iterator<_Sizet,_MycontTy>”推导 模板 参数 3 error C2784: “std::_Vector_iterator<_Ty,_Alloc> std::operator +(_Vector_iterator<_Ty,_Alloc>::difference_type,std::_Vector_iterator<_Ty,_Alloc>)”: 无法从“WCHAR [260]”为“std::_Vector_iterator<_Ty,_Alloc>”推导 模板 参数我的程序出现这个错误的原因是,属性>配置属性>常规>使用unicode字符集,改为使用多字节字符集,就OK了。
以上是内存溢出为你收集整理的无法从“WCHAR [260]”为“std::_Vb_iterator<_Sizet,_Difft,_MycontTy>”推导 模板 参数全部内容,希望文章能够帮你解决无法从“WCHAR [260]”为“std::_Vb_iterator<_Sizet,_Difft,_MycontTy>”推导 模板 参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)