fstream、ifstream、ofstream是c++中关于文件操作的三个类
fstream类对文件进行读操作和写操作
打开文件
fstream fs("要打开的文件名",打开方式);
或者
fstream fs;
fs.open("要打开的文件名",打开方式);
例子:
- fstream fs("test.txt"); //用文本方式打开一个文件用于读写
- fstream fs("test.txt",ios::binary); //用二进制方式打开一个文件用于读写
原文地址:https://www.cnblogs.com/smallredness/p/9245353.html
时间: 2024-10-12 06:49:19