#include<iostream>#include<fstream>#include<string>using namespace std;voID test() { ifstream ifs; //如若不指定路径,则在该项目同级下生成 ifs.open("test.txt",ios::in); if (!ifs.is_open()) { return; } 读文件 第一种 char buf[1024] = { 0 }; while (ifs >> buf) { cout << buf << endl; } 第二种 while (ifs.getline(buf,sizeof(buf))) { cout << buf <<第三种 string buf; while(getline(ifs,buf)) { cout << buf <<第四种 char c; while ((c = ifs.get()) != EOF) { 这里没有endl; cout << c; } ifs.close();}int main() { test(); system(pause"return ;}总结
以上是内存溢出为你收集整理的c++文件 *** 作之文本文件-读文件全部内容,希望文章能够帮你解决c++文件 *** 作之文本文件-读文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)