写文件:
ofstream of;
of.open("test.txt");
string content = "abcd";
of.write(content.c_str(),content.length());
of<<endl;
of<<"";
of.close();
读文件:
写文件:
ofstream of;
of.open("test.txt");
string content = "abcd";
of.write(content.c_str(),content.length());
of<<endl;
of<<"";
of.close();
读文件: