代码演示:
#include<iostream>
using namespace std;
#include<string>
#include<fstream>
void test() {
//1、包含头文件
//2、创建流对象
ifstream ifs;
//3、打开文件并判断文件是否成功
ifs.open("test.txt", ios::in);
if (!ifs.is_open())
{
cout << "文件打开失败" << endl;
return;
}
//4、读文件
//第一种方式
char buf[123] = { 0 };
while (ifs >> buf)
{
cout << buf << endl;
}
//第二种方式
//char buf[123] = { 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))
//{
//cout << c;
//}
//5、关闭文件
ifs.close();
}
int main() {
test();
}
运行截图:
文章来源:https://www.toymoban.com/news/detail-640612.html
文章来源地址https://www.toymoban.com/news/detail-640612.html
到了这里,关于C++,文本文件,读取文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!