basic_fstream::basic_fstream

构造对象类型 basic_fstream

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

参数

备注

第一个构造函数通过调用 basic_iostream初始化基类(sb),其中 sb 是选件类 basic_filebuf<ElemTr>中的对象。 它还通过调用 basic_filebuf<Elem 初始化 sbTr>。

第二个和第三个构造函数通过调用 basic_iostream初始化基类(sb)。 它还通过调用 basic_filebuf<ElemTr> 以及 sb.open(_Filename,_Mode) 初始化 sb。 如果后一个函数返回null指针,构造函数调用 setstate(failbit)。

rvalue引用,第四个构造函数初始化。right内容的对象,将。

示例

使用 basic_fstream的示例参见 streampos

要求

标头: <fstream>

命名空间: std

请参见

参考

basic_fstream Class

iostream编程

(mfc)约定