鱼C论坛

 找回密码
 立即注册
查看: 1688|回复: 0

[技术交流] C++ Error no matching function for call to 'std::basic_ofstream... 的解决方案

[复制链接]
发表于 2020-3-1 16:39:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 一个账号 于 2020-3-1 17:28 编辑

Error no matching function for call to 'std::basic_ofstream... 的解决方案


问题
string filename = "1.txt";  
ifstream fin;  
fin.open(filename);  

上述语句会产生如下错误:
[Error] no matching function for call to 'std::basic_ofstream<char>::basic_ofstream(std::string&, const openmode&)'

解决方法
std::ofstream can only be constructed with a std::string if you have C++11 or higher. Typically that is done with -std=c++11 (gcc, clang). If you do not have access to c++11 then you can use the c_str() function of std::string to pass a const char * to the ofstream constructor.

Also as Ben has pointed out you are using an empty string for the second parameter to the constructor. The second parameter if proivided needs to be of the type ios_base::openmode.

With all this your code should be

ofstream entrada(asegurado); // C++11 or higher

or

ofstream entrada(asegurado.c_str());  // C++03 or below

也就是我这里使用的 C++ 编译版本比较低,这里解决方式可以使用 .c_str() 方法。
string filename = "1.txt";  
ifstream fin;  
fin.open(filename.c_str());  

当然,也有第二种解决方式,比较 low 一点:
cout<<"输入文件名及路径以创建该文件,如:E:/a.txt"<<endl;
char fileName[10];
cin>>fileName;
ofstream fout(fileName);

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 01:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表