命名空间
变体
操作

std::basic_iostream

来自 cppreference.com
< cpp‎ | io
在头文件 <istream> 中定义
template<

    class CharT,
    class Traits = std::char_traits<CharT>
> class basic_iostream :
      public basic_istream<CharT, Traits>,

      public basic_ostream<CharT, Traits>

类模板 basic_iostream 为流上的高级输入/输出操作提供支持。支持的操作包括顺序读写和格式化。此功能是在 std::basic_streambuf 类提供的接口之上实现的。它通过 std::basic_ios 类进行访问。

cpp/io/ios basecpp/io/basic ioscpp/io/basic istreamcpp/io/basic ostreamstd-basic iostream-inheritance.svg

继承图

为常见字符类型提供了一些类型定义

在头文件 <istream> 中定义
类型 定义
std::iostream std::basic_iostream<char>
std::wiostream std::basic_iostream<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[编辑]

[编辑] 成员函数

构造对象
(公共成员函数) [编辑]
销毁对象
(虚拟公共成员函数) [编辑]

[编辑] 受保护的成员函数

(C++11)
移动赋值另一个 basic_iostream
(受保护的成员函数) [编辑]
(C++11)
将状态与另一个 basic_iostream 交换
(公共成员函数) [编辑]

std::basic_istream 继承

成员函数

格式化输入
提取格式化数据
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
非格式化输入
提取字符
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
读取下一个字符而不提取它
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
撤回一个字符
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
将一个字符放入输入流
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
提取字符,直到找到给定字符
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
提取并丢弃字符,直到找到给定字符
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
提取字符块
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
提取已有的字符块
(std::basic_istream<CharT,Traits> 的公共成员函数) [编辑]
返回上次非格式化输入操作提取的字符数量
(std::basic_istream<CharT,Traits> 的公共成员函数) [edit]
定位
返回输入位置指示器
(std::basic_istream<CharT,Traits> 的公共成员函数) [edit]
设置输入位置指示器
(std::basic_istream<CharT,Traits> 的公共成员函数) [edit]
杂项
与底层存储设备同步
(std::basic_istream<CharT,Traits> 的公共成员函数) [edit]

成员类

实现用于为输入操作准备流的基本逻辑
(std::basic_istream<CharT,Traits> 的公共成员类) [edit]

继承自 std::basic_ostream

成员函数

格式化输出
插入格式化数据
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]
非格式化输出
插入一个字符
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]
插入字符块
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]
定位
返回输出位置指示器
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]
设置输出位置指示器
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]
杂项
与底层存储设备同步
(std::basic_ostream<CharT,Traits> 的公共成员函数) [edit]

成员类

实现用于为输出操作准备流的基本逻辑
(std::basic_ostream<CharT,Traits> 的公共成员类) [edit]

继承自 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> 的公共成员函数) [edit]
检查是否已到达文件结尾
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
检查是否发生错误
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
检查是否发生不可恢复的错误
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
检查是否发生错误(fail() 的同义词)
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
检查是否未发生错误(!fail() 的同义词)
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
返回状态标志
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
设置状态标志
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
修改状态标志
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
格式化
复制格式信息
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
管理填充字符
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
杂项
管理异常掩码
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
设置区域设置
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
管理关联的流缓冲区
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
管理绑定流
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
缩小字符
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]
扩展字符
(std::basic_ios<CharT,Traits> 的公共成员函数) [edit]

继承自 std::ios_base

成员函数

格式化
管理格式标志
(std::ios_base 的公共成员函数) [edit]
设置特定格式标志
(std::ios_base 的公共成员函数) [edit]
清除特定格式标志
(std::ios_base 的公共成员函数) [edit]
管理浮点运算的十进制精度
(std::ios_base 的公共成员函数) [edit]
管理字段宽度
(std::ios_base 的公共成员函数) [edit]
区域设置
设置区域设置
(std::ios_base 的公共成员函数) [edit]
返回当前区域设置
(std::ios_base 的公共成员函数) [edit]
内部可扩展数组
[静态]
返回一个在程序范围内唯一的整数,可以安全地用作 pword()iword() 的索引
(std::ios_base 的公共静态成员函数) [edit]
如果需要,调整私有存储的大小,并访问给定索引处的 long 元素
(std::ios_base 的公共成员函数) [edit]
如果需要,调整私有存储的大小,并访问给定索引处的 void* 元素
(std::ios_base 的公共成员函数) [编辑]
杂项
注册事件回调函数
(std::ios_base 的公共成员函数) [编辑]
设置 C++ 和 C I/O 库是否可互操作
(std::ios_base 的公共静态成员函数) [编辑]
成员类
流异常
(std::ios_base 的公共成员类) [编辑]
初始化标准流对象
(std::ios_base 的公共成员类) [编辑]

成员类型和常量

类型 解释
流打开模式类型

还定义了以下常量

常量 解释[编辑]
app 每次写入之前都定位到流的末尾[编辑]
binary 二进制模式 打开[编辑]
in 打开以供读取[编辑]
out 打开以供写入[编辑]
trunc 打开时丢弃流的内容[编辑]
ate 打开后立即定位到流的末尾[编辑]
noreplace (C++23) 以独占模式打开[编辑]

(typedef) [编辑]
格式化标志类型

还定义了以下常量

常量 解释[编辑]
dec 对整数 I/O 使用十进制基数:参见 std::dec[编辑]
oct 对整数 I/O 使用八进制基数:参见 std::oct[编辑]
hex 对整数 I/O 使用十六进制基数:参见 std::hex[编辑]
basefield dec | oct | hex。对屏蔽操作有用[编辑]
left 左对齐(在右侧添加填充字符):参见 std::left[编辑]
right 右对齐(在左侧添加填充字符):参见 std::right[编辑]
internal 内部对齐(在内部指定的点添加填充字符):参见 std::internal[编辑]
adjustfield left | right | internal。对屏蔽操作有用[编辑]
scientific 使用科学记数法生成浮点数类型,如果与 fixed 结合使用,则使用十六进制记数法:参见 std::scientific[编辑]
fixed 使用定点记数法生成浮点数类型,如果与 scientific 结合使用,则使用十六进制记数法:参见 std::fixed[编辑]
floatfield scientific | fixed。对屏蔽操作有用[编辑]
boolalpha 以字母数字格式插入和提取 bool 类型:参见 std::boolalpha[编辑]
showbase 生成一个前缀,指示整数输出的数字基数,在货币 I/O 中需要货币指示符:参见 std::showbase[编辑]
showpoint 对浮点数输出无条件地生成小数点字符:参见 std::showpoint[编辑]
showpos 为非负数输出生成 + 字符:参见 std::showpos[编辑]
skipws 在某些输入操作之前跳过前导空格:参见 std::skipws[编辑]
unitbuf 每次输出操作后刷新输出:参见 std::unitbuf[编辑]
uppercase 将某些小写字母替换为它们的大写
某些输出操作中的等价项:参见 std::uppercase[编辑]

(typedef) [编辑]
流状态类型

还定义了以下常量

常量 解释[编辑]
goodbit 没有错误[编辑]
badbit 不可恢复的流错误[编辑]
failbit 输入/输出操作失败(格式化或提取错误)[编辑]
eofbit 关联的输入序列已到达文件末尾[编辑]

(typedef) [编辑]
寻找方向类型

还定义了以下常量

常量 解释[编辑]
beg 流的开头[编辑]
end 流的结尾[编辑]
cur 流位置指示器的当前位置[编辑]

(typedef) [编辑]
指定事件类型
(enum) [编辑]
回调函数类型
(typedef) [编辑]

[编辑] 缺陷报告

以下行为更改的缺陷报告被追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 271 C++98 成员类型char_typetraits_typeint_typepos_typeoff_type未定义
(std::basic_istreamstd::basic_ostream都定义了这些类型,导致歧义)
定义
这些类型

[edit] 参见