#include<iostream>
#include<string>
#include<fstream>
using namespace std;
void test01()
{
//包含头文件
//创建流对象
ifstream ifs;
//打开文件并判断是否打开成功
ifs.open("test.txt",ios::in);
if (!ifs.is_open())//ifs.is_open()会判断文件是否打开并返回1,0
{
cout << "文件打开失败" << endl;
return;
}
//读数据
string str;
while (getline(ifs,str))
{
cout << str << endl;
}
//5.关闭文件
ifs.close();
}
int main()
{
test01();
}
另外3种读数据的方式: