C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- C 风格文件输入/输出
- std::basic_streambuf
- std::basic_filebuf
- std::basic_stringbuf
- 输入/输出操纵符
- std::strstreambuf
- std::basic_syncbuf
- std::basic_ios
- std::basic_istream
- std::ios_base
- std::basic_osyncstream
- std::basic_ostream
- std::basic_iostream
- std::basic_ifstream
- std::basic_ofstream
- std::basic_fstream
- std::basic_istringstream
- std::basic_ostringstream
- std::basic_stringstream
- std::istrstream
- std::ostrstream
- std::strstream
- std::streamoff
- std::streamsize
- std::fpos
- std::iostream_category
- std::io_errc
- std::cin, std::wcin
- std::cout, std::wcout
- std::cerr, std::wcerr
- std::clog, std::wclog
- 注释
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::basic_ofstream
class CharT,
class Traits = std::char_traits<CharT>
类模板 basic_ofstream
实现文件上基于流的高层输出操作。它将 std::basic_ostream 的高层接口赋予基于文件的流缓冲( std::basic_filebuf )。
std::basic_ofstream
典型实现只保有一个非导出成员: std::basic_filebuf<CharT, Traits> 的实例。
继承图
亦对常用字符类型定义二个特化:
定义于头文件
<fstream> | |
类型 | 定义 |
ofstream
|
basic_ofstream<char> |
wofstream
|
basic_ofstream<wchar_t> |
成员类型
成员类型 | 定义 |
char_type
|
CharT |
traits_type
|
Traits ;若 Traits::char_type 不是 CharT 则程序为谬构。 |
int_type
|
Traits::int_type |
pos_type
|
Traits::pos_type |
off_type
|
Traits::off_type |
成员函数
构造文件流 (公开成员函数) | |
(析构函数) [虚] (隐式声明) |
析构 basic_ofstream 和关联的缓冲区,并关闭文件 (虚公开成员函数) |
(C++11) |
移动文件流 (公开成员函数) |
(C++11) |
交换二个文件流 (公开成员函数) |
返回底层未处理的文件设备对象 (公开成员函数) | |
文件操作 | |
检查流是否有关联文件 (公开成员函数) | |
打开文件,并将它与流关联 (公开成员函数) | |
关闭关联文件 (公开成员函数) |
非成员函数
特化 std::swap 算法 (函数模板) |
继承自 std::basic_ostream
成员函数
有格式输出 | |
插入带格式数据 ( std::basic_ostream<CharT,Traits> 的公开成员函数) | |
无格式输出 | |
插入字符 ( std::basic_ostream<CharT,Traits> 的公开成员函数) | |
插入字符块 ( std::basic_ostream<CharT,Traits> 的公开成员函数) | |
寻位 | |
返回输出位置指示器 ( std::basic_ostream<CharT,Traits> 的公开成员函数) | |
设置输出位置指示器 ( std::basic_ostream<CharT,Traits> 的公开成员函数) | |
杂项 | |
与底层存储设备同步 ( std::basic_ostream<CharT,Traits> 的公开成员函数) |
成员类
为输出操作实现流准备的基本逻辑 ( std::basic_ostream<CharT,Traits> 的公开成员类) |
继承自 std::basic_ios
成员类型
成员类型 | 定义 |
char_type
|
CharT |
traits_type
|
Traits |
int_type
|
Traits::int_type |
pos_type
|
Traits::pos_type |
off_type
|
Traits::off_type |
成员函数
状态函数 | |
检查是否没有发生错误,例如是否可执行I/O操作 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
检查是否到达了文件末尾 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
检查是否发生了可恢复的错误 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
检查是否已发生不可恢复的错误 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
检查是否有错误发生(fail() 的同义词) ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
(C++11 前)(C++11 起) |
检查是否没有发生错误(!fail()的同义词) ( std::basic_ios<CharT,Traits> 的公开成员函数) |
返回状态标志 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
设置状态标志 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
修改状态标志 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
格式化 | |
复制格式化信息 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
管理填充字符 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
杂项 | |
管理异常掩码 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
设置本地环境 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
管理相关的流缓冲区 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
管理绑定的流 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
窄化字符 ( std::basic_ios<CharT,Traits> 的公开成员函数) | |
拓宽字符 ( std::basic_ios<CharT,Traits> 的公开成员函数) |
继承自 std::ios_base
成员函数
格式化 | |
管理格式标志 ( std::ios_base 的公开成员函数) | |
设置特定格式标志 ( std::ios_base 的公开成员函数) | |
清除特定格式的标志 ( std::ios_base 的公开成员函数) | |
管理浮点操作的精度 ( std::ios_base 的公开成员函数) | |
管理域的宽度 ( std::ios_base 的公开成员函数) | |
本地环境 | |
设置本地环境 ( std::ios_base 的公开成员函数) | |
返回当前本地环境 ( std::ios_base 的公开成员函数) | |
内部可扩展数组 | |
[静态] |
返回能安全用作 pword() 和 iword() 下标的程序范围内独有的整数 ( std::ios_base 的公开静态成员函数) |
如果有必要的话,调整私有存储的大小,并且访问位于提供的下标的long元素 ( std::ios_base 的公开成员函数) | |
若需要则重置私有存储的大小,并访问位于指定下标的 void* 元素 ( std::ios_base 的公开成员函数) | |
杂项 | |
注册事件回调函数 ( std::ios_base 的公开成员函数) | |
[静态] |
设置C++和C的IO库是否可以互操作 ( std::ios_base 的公开静态成员函数) |
成员类 | |
流异常 ( std::ios_base 的公开成员类) | |
初始化标准流对象 ( std::ios_base 的公开成员类) |
成员类型和常量 | |||||||||||||||||||||||||||||||||||||||||
类型 | 解释 | ||||||||||||||||||||||||||||||||||||||||
流打开模式类型
亦定义下列常量:
(typedef) | |||||||||||||||||||||||||||||||||||||||||
格式化标志类型
亦定义下列常量:
(typedef) | |||||||||||||||||||||||||||||||||||||||||
流状态类型
亦定义下列常量:
(typedef) | |||||||||||||||||||||||||||||||||||||||||
寻位方向类型
亦定义下列常量:
(typedef) | |||||||||||||||||||||||||||||||||||||||||
指定事件类型 (枚举) | |||||||||||||||||||||||||||||||||||||||||
回调函数类型 (typedef) |
示例
运行此代码
#include <iostream> #include <fstream> #include <string> int main() { std::string filename = "Test.b"; { std::ofstream ostrm(filename, std::ios::binary); double d = 3.14; ostrm.write(reinterpret_cast<char*>(&d), sizeof d); // 二进制输出 ostrm << 123 << "abc" << '\n'; // 文本输出 } // 回读 std::ifstream istrm(filename, std::ios::binary); double d; istrm.read(reinterpret_cast<char*>(&d), sizeof d); int n; std::string s; istrm >> n >> s; std::cout << " read back: " << d << " " << n << " " << s << '\n'; }
输出:
read back: 3.14 123 abc