std::basic_filebuf::is_open
来自cppreference.com
< cpp | io | basic filebuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
bool is_open() const; |
||
返回true如果最近一次调用
open()
成功,自那以后一直没有调用close()
.目录 |
[编辑] 参数
(无)
[编辑] 返回值
true相关的文件,如果是开放的,false否则.....
原文:
true if the associated file is open, false otherwise.
[编辑] 注释
此功能通常被称为std::basic_fstream::is_open.
原文:
This function is typically called by std::basic_fstream::is_open.
[编辑] 示例
#include <fstream> #include <iostream> int main() { std::ifstream fs("test.txt"); std::filebuf fb; fb.open("test.txt", std::ios_base::in); std::cout << std::boolalpha << "direct call: " << fb.is_open() << '\n' << "through streambuf: " << fs.rdbuf()->is_open() << '\n' << "through fstream: " << fs.is_open() << '\n'; }
输出:
direct call: true through streambuf: true through fstream: true
[编辑] 另请参阅
打开一个文件,并将其配置为相应的字符序列 原文: opens a file and configures it as the associated character sequence (公共成员函数) | |
冲放区的缓冲区和关闭相关的文件 原文: flushes the put area buffer and closes the associated file (公共成员函数) |