首页 > 编程 > C++ > 正文

c++中的getline()读文件使用while判断

2019-11-06 06:31:24
字体:
来源:转载
供稿:网友

#include<iostream>

#include<fstream>

using namespace std;int main(){ifstream in("file.txt");

string s,str="";

//使用while循环判断是否读完

//判断文件是否为空时使用peek函数,若peek返回EOF则文件为空

while(getline(in,s)){str+=s;}cout<<str<<endl;return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选