basic_fstream::open

打开文件。

void open(
    const char *_Filename,
    ios_base::openmode _Mode = ios_base::in | ios_base::out,
    int _Prot = (int)ios_base::_Openprot
);
void open(
    const char *_Filename,
    ios_base::openmode _Mode
);
void open(
    const wchar_t *_Filename,
    ios_base::openmode _Mode = ios_base::in | ios_base::out,
    int _Prot = (int)ios_base::_Openprot
);
void open(
    const wchar_t *_Filename,
    ios_base::openmode _Mode
);

参数

备注

成员函数调用 rdbuf -> 打开(_Filename,_Mode)。 如果该函数返回null指针,函数调用 setstate(failbit)。

示例

为的示例演示如何参见 basic_filebuf::open 使用 打开

要求

标头: <fstream>

命名空间: std

请参见

参考

basic_fstream Class

iostream编程

(mfc)约定