ifstream
定義用來從檔案連續讀取單一位元組字元的資料流。 ifstream 是特製化 char 之樣板類別 basic_ifstream 的 typedef。
另外還有 wifstream,這是特製化 basic_ifstream 以讀取 wchar_t 全形字元的 typedef。 如需詳細資訊,請參閱wifstream。
typedef basic_ifstream<char, char_traits<char> > ifstream;
備註
這個類型與專為具有預設字元特性之 char 類型項目所特製化的樣板類別 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