C++打开文件时报错

no matching function for call to ‘std:basic_ofstream::open(std::string&)’

ofstream outfile("text1.txt");

上面的代码遇到这种报错,有可能是c++使用的编译版本比较低
解决方式:

ofstream outfile("text1.txt".c_str());

你可能感兴趣的:(C++,c++)