次の方法で共有


basic_ifstream::basic_ifstream

basic_ifstreamオブジェクトを構築します。

basic_ifstream( );
explicit basic_ifstream(
    const char *_Filename,
    ios_base::openmode _Mode = ios_base::in,
    int _Prot = (int)ios_base::_Openprot
);
explicit basic_ifstream(
    const wchar_t *_Filename,
    ios_base::openmode _Mode = ios_base::in,
    int _Prot = (int)ios_base::_Openprot
);
basic_ifstream(basic_ifstream&& right);

パラメーター

  • _Filename
    開くファイルの名前。

  • _Mode
    ios_base::openmodeの列挙型の 1 つが。

  • _Prot
    _fsopen、_wfsopenの shflag のパラメーターと同等の既定のファイルの開始保護。

解説

一つ目のコンストラクターは basic_istreamsb () を呼び出して sb がクラス basic_filebuf<Elem、Tr> に格納されたオブジェクトである場合に、基本クラスを初期化します。また、basic_filebuf<Elem、Tr> を呼び出して sb を初期化します。

2 つ目と 3 つ目のコンストラクターは、basic_istreamsb () を呼び出して、基本クラスを初期化します。また、basic_filebuf<Elem、Tr> を呼び出して sb と、sb初期化します。オープン (_Filename、_Mode |ios_base::in).後の関数が null ポインターが返された場合、コンストラクターは setstate (failbit) を呼び出します。

4 つ目のコンストラクターは、rvalue 参照として扱う rightの内容でオブジェクトを初期化します。

使用例

次の例では、ファイルからテキストを読み取る方法を示します。ファイルを作成するには、basic_ofstream::basic_ofstreamの例を参照してください。

// basic_ifstream_ctor.cpp
// compile with: /EHsc

#include <fstream>
#include <iostream>

using namespace std;

int main(int argc, char **argv)
{
    ifstream ifs("basic_ifstream_ctor.txt");
    if (!ifs.bad())
    {
        // Dump the contents of the file to cout.
        cout << ifs.rdbuf();
        ifs.close();
    }
}

入力: basic_ifstream_ctor.txt

This is the contents of basic_ifstream_ctor.txt.

出力

This is the contents of basic_ifstream_ctor.txt.

必要条件

ヘッダー: <fstream>

名前空間: std

参照

関連項目

basic_ifstream Class

入出力ストリームのプログラミング

入出力ストリームの規則