2个回答
展开全部
getline() 语法:
istream &getline( char *buffer, streamsize num );
istream &getline( char *buffer, streamsize num, char delim );
用getline()读取字符到buffer中,buffer在代码中通常体现为一个字符数组,streamsize num是一次读入多少个字符, num - 1个字符已经读入, 当碰到一个换行标志, 碰到一个EOF, 或者任意地读入,直到读到字符delim。delim字符不会被放入buffer中。delim字符可以自已设定,默认为回车符'/n'
#include <iostream.h>
#include<stdlib.h>
#include <iomanip.h>
#include <fstream.h>
const int N=10;
int main()
{
char str[N];
ifstream fin;
fin.open("data.txt");
if (!fin)
{
cout<<"error "<<endl;
exit(1);
}
while(fin.getline(str,sizeof(str)))
{
cout<<str;
cout<<endl;
}
cout<<endl;
fin.clear();
cin.get();
return 0;
}
istream &getline( char *buffer, streamsize num );
istream &getline( char *buffer, streamsize num, char delim );
用getline()读取字符到buffer中,buffer在代码中通常体现为一个字符数组,streamsize num是一次读入多少个字符, num - 1个字符已经读入, 当碰到一个换行标志, 碰到一个EOF, 或者任意地读入,直到读到字符delim。delim字符不会被放入buffer中。delim字符可以自已设定,默认为回车符'/n'
#include <iostream.h>
#include<stdlib.h>
#include <iomanip.h>
#include <fstream.h>
const int N=10;
int main()
{
char str[N];
ifstream fin;
fin.open("data.txt");
if (!fin)
{
cout<<"error "<<endl;
exit(1);
}
while(fin.getline(str,sizeof(str)))
{
cout<<str;
cout<<endl;
}
cout<<endl;
fin.clear();
cin.get();
return 0;
}
展开全部
#include <fstream>
using std::fstream;
char buffer[1024] = {0};
fstream kkk;
kkk.open("E:\\SoftWorkspace\\123.txt");
kkk.getline(buffer, 1024);
using std::fstream;
char buffer[1024] = {0};
fstream kkk;
kkk.open("E:\\SoftWorkspace\\123.txt");
kkk.getline(buffer, 1024);
追问
有没有一个函数使用方法是读到换行符就停止读取,否则继续读取?
追答
kkk.getline(buffer, 1024); 这个就是读取到换行符就停止读取啊,那个1024是个最大值,防止读取文件时,一行文本大于1024个字符导致内存越界。
这行代码的意思是:读取文本内容,遇到换行符就终止,但是最多读取1024个字符。
这样写就是逐行读取文本,直到文件全部读取完成才结束。
while (kkk.getline(buffer, 1024))
{
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |