2个回答
展开全部
修改了一下:
#include <string>//这一句去掉也对,不知为什么
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
string ss = "abcddddd";//C++标准库引入了string类,这样你就可以直接给这个对象赋值了
ofstream ofile;
ofile.open("c:\\a.txt");
if (!ofile)
{
cerr << "Can not open the file." << endl;
return 0;
}
ofile << ss.c_str();
ofile.close();
return 0;
}
#include <string>//这一句去掉也对,不知为什么
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
string ss = "abcddddd";//C++标准库引入了string类,这样你就可以直接给这个对象赋值了
ofstream ofile;
ofile.open("c:\\a.txt");
if (!ofile)
{
cerr << "Can not open the file." << endl;
return 0;
}
ofile << ss.c_str();
ofile.close();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询