写文件:
ofstream of; of.open("test.txt"); string content = "abcd"; of.write(content.c_str(),content.length()); of<<endl; of<<"1234"; of.close();
读文件:
时间: 2024-10-18 06:51:17
写文件:
ofstream of; of.open("test.txt"); string content = "abcd"; of.write(content.c_str(),content.length()); of<<endl; of<<"1234"; of.close();
读文件: