#include<fstream>//文件的头文件
#include<string>//全局函数getline的头文件
ofs.open("test.txt", ios::out);
ofs << "年龄:18" << endl;//<<用于写入
ifs.open("test.txt", ios::in);
cout << "文件打开失败" << endl;
//char buf[1024] = { 0 };
//while (ifs >> buf)//右移运算符,将文件中的数据读入buf(读完返回false)
// cout << buf << endl;//在显示屏上输出buf
//char buf[1024] = { 0 };
//while (ifs.getline(buf, sizeof(buf)))//一行一行读,读到buf中,buf容量为sizeof(buf)
// cout << buf << endl;//在显示屏上输出buf
while (getline(ifs, buf))//这里的getline是全局函数
第四种读取(一个字符一个字符的读,效率不如前3种,不推荐)
//while ((c = ifs.get()) != EOF)//EOF表示文件尾