istream & getline(char* buf, int bufSize);
istream & getline(char* buf, int bufSize, char delim);
#include <iostream> #include <fstream> using namespace std; int main() { char c[40]; //以二进制模式打开 in.txt 文件 ifstream inFile("in.txt", ios::in | ios::binary); //判断文件是否正常打开 if (!inFile) { cout << "error" << endl; return 0; } //从 in.txt 文件中读取一行字符串,最多不超过 39 个 inFile.getline(c, 40); cout << c ; inFile.close(); return 0; }假设 in.txt 文件中存有如下字符串:
http://task.lmcjl.com/cplus/
则程序执行结果为:http://task.lmcjl.com/cplus/
inFile.getline(c,40,'c');这意味着,一旦遇到字符 'c',getline() 方法就会停止读取。 再次运行程序,其输出结果为:
http://
#include <iostream> #include <fstream> using namespace std; int main() { char c[40]; ifstream inFile("in.txt", ios::in | ios::binary); if (!inFile) { cout << "error" << endl; return 0; } //连续以行为单位,读取 in.txt 文件中的数据 while (inFile.getline(c, 40)) { cout << c << endl; } inFile.close(); return 0; }假设 in.txt 文件中存有如下数据:
http://task.lmcjl.com/cplus/
http://task.lmcjl.com/python/
http://task.lmcjl.com/java/
http://task.lmcjl.com/cplus/
http://task.lmcjl.com/python/
http://task.lmcjl.com/java/
本文链接:http://task.lmcjl.com/news/8885.html