ifstream
定义要使用的流从文件按顺序读取单字节字符数据。 ifstream 是一种特殊 char的模板类 basic_ifstream 的 typedef。
还可以 wifstream,专用 basic_ifstream 读取 wchar_t 双字符的 typedef。 有关更多信息,请参见 wifstream。
typedef basic_ifstream<char, char_traits<char> > ifstream;
备注
该类型是一个模板类的 basic_ifstream同义词,专用为类型字符的组件与默认特征的功能。 示例。
using namespace std;
ifstream infile("existingtextfile.txt");
if (!infile.bad())
{
// Dump the contents of the file to cout.
cout << infile.rdbuf();
infile.close();
}
要求
**标题:**fstream
命名空间: std