C++ IO学习

关于IO,主要有这么三种类型:标准输入输出,文件输入输出,字符串流。后面两种都是继承自第一种标准输入输出的。他们分别对应的头文件是:

标准输入输出:#include <iostream>

文件输入输出:#include <fstream>

字符串流:#include <sstream>

流对象是不能复制和拷贝的。因此流对象不能用于赋值和参数传递,如果一定要传递,那么必须传递指针或者引用。

这里记录了一个例子来说明,流对象的使用,通过这个使用,来说明流对象的属性状态。上代码,假如在本地D盘根目录下有个文件hello.txt。文件中的内容是001--006。

 #include "stdafx.h"
#include <fstream>
#include <sstream>
#include <iostream> using namespace std; ifstream &print(ifstream &in)
{
string str; cout << in.bad() << endl;
cout << in.good() << endl;
cout << in.fail() << endl;
cout << in.eof() << endl;
cout << "--------------------1" << endl;
while (in >> str)
{
cout << str << endl;
}
cout << "--------------------2" << endl;
cout << in.bad() << endl;
cout << in.good() << endl;
cout << in.fail() << endl;
cout << in.eof() << endl;
cout << "--------------------3" << endl;
in.clear();
cout << in.bad() << endl;
cout << in.good() << endl;
cout << in.fail() << endl;
cout << in.eof() << endl;
in.seekg(, ios_base::beg);
return in;
} int main()
{
ifstream in("d://hello.txt");
string str;
print(in);
while (in >> str)
{
cout << str << endl;
}
in.close();
return ;
}

如上代码示例了读取一个文件,并将文件内容打印到控制台上,并且将IO流重置,并且重新打印一遍。

其中如下代码表示了流对象的四种状态:

in.bad() 如果流被破坏,则返回true.
in.good()如果流处于有效状态,则返回true。
in.fail() 如果IO操作失败,则返回true。
in.eof() 如果读取文件到了文件末尾,则返回true。
in.clear(); 用于重置所有的状态。
in.seekg(0, ios_base::beg); 将文件操作的指针重置到文件开始处。

C++ IO学习
上一篇:hello world from hibernate


下一篇:Android RecyclerView 瀑布流滑动到最后自动加载更多