文件操作可以将数据永久化,C++中对文件操作需要包含头文件 < fstream >
文件类型分为两种:
- 
文本文件: 文件以文本的ASCII码形式存储在计算机中 
- 
二进制文件: 文件以文本的二进制形式存储在计算机中,用户一般不能直接读懂它们 
操作文件的三大类:
- 
ofstream:写操作 
- 
ifstream: 读操作 
- 
fstream : 读写操作 
文件打开方式:

注意: 文件打开方式可以配合使用,利用 | 操作符
**例如:**用二进制方式写文件 ios::binary | ios:: out
写文件步骤如下:
- 
包含头文件 #include<fstream> 
- 
创建流对象 ofstream ofs; 
- 
打开文件 ofs.open("文件路径",打开方式); 
- 
写数据 ofs << "写入的数据"; 
- 
关闭文件 ofs.close(); 
            
            
              cpp
              
              
            
          
          #include<iostream>
using namespace std;
#include<fstream>
//文本文件	写文件
void test()
{
	//1.包含头文件 fstream
	//2.创建流对象
	ofstream ofs;
	//3.指定打开方式
	ofs.open("test.txt", ios::out);//生成的test.txt在当前代码目录下
	//4.写内容
	ofs << "姓名:张三" << endl;
	ofs << "性别:男" << endl;
	ofs << "年龄:18" << endl;
	//5.关闭文件
	ofs.close();
}
int main()
{
	test();
	return 0;
}读文件步骤如下:
- 
包含头文件 #include<fstream> 
- 
创建流对象 ifstream ifs; 
- 
打开文件并判断文件是否打开成功 ifs.open("文件路径",打开方式); 
- 
读数据 四种方式读取 
- 
关闭文件 ifs.close(); 
            
            
              cpp
              
              
            
          
          #include<iostream>
using namespace std;
#include<fstream>
#include<string>
//文本文件	读文件
void test()
{
	//1.包含头文件
	//2.创建对象流
	ifstream ifs;
	//3.打开文件 并且利用is_open函数可以判断文件是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}
	//4.读数据
	//第一种
	/*char buf[1024] = { 0 };
	while (ifs >> buf)
	{
		cout << buf << endl;
	}*/
	///第二种
	/*char buf[1024] = { 0 };
	while ( ifs.getline(buf, sizeof(buf)))
	{
		cout << buf << endl;
	}*/
	//第三种
	/*string buf;
	while (getline(ifs, buf))
	{
		cout << buf << endl;
	}*/
	//第四种(不推荐用)
	char c;
	while ((c = ifs.get()) != EOF)//EOF:end of file
	{
		cout << c;
	}
	//5.关闭文件
	ifs.close();
}
int main()
{
	test();
	return 0;
}