c++文件 *** 作之文本文件-读文件

c++文件 *** 作之文本文件-读文件,第1张

概述#include<iostream> #include<fstream> #include<string> using namespace std; void te
#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++文件 *** 作之文本文件-读文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1159134.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存