命名空间
变体
操作

标准库头文件 <iostream>

来自 cppreference.com
< cpp‎ | header
 
 
标准库头文件
语言支持
概念
<concepts> (C++20)
诊断
<system_error> (C++11)

内存管理
<memory_resource> (C++17)  
元编程
<type_traits> (C++11)
<ratio> (C++11)
通用实用程序
<utility>
<tuple> (C++11)
<optional> (C++17)
<variant> (C++17)
<any> (C++17)
<debugging> (C++26)
<expected> (C++23)
<bitset>
<charconv> (C++17)
<format> (C++20)
<bit> (C++20)

字符串
<cuchar> (C++11)

容器
<flat_set> (C++23)
<span> (C++20)
<mdspan> (C++23)
<inplace_vector> (C++26)
迭代器
<iterator>
范围
<ranges> (C++20)
<generator> (C++23)
算法
数值
<cfenv> (C++11)
<complex>
<cmath>
<linalg> (C++26)
<numbers> (C++20)

时间
<chrono> (C++11)
本地化
<codecvt> (C++11/17/26*)
<text_encoding> (C++26)
输入/输出
<filesystem> (C++17)
<cstdio>
<cinttypes> (C++11)
<strstream> (C++98/26*)
正则表达式
<regex> (C++11)
并发支持
<stop_token> (C++20)
<thread> (C++11)
<atomic> (C++11)
<rcu> (C++26)
<stdatomic.h> (C++23)
<mutex> (C++11)
<shared_mutex> (C++14)

<condition_variable> (C++11)  
<semaphore> (C++20)
<latch> (C++20)

<barrier> (C++20)
<future> (C++11)
<hazard_pointer> (C++26)

C 兼容性
<cstdbool> (C++11/17/20*)  
<ccomplex> (C++11/17/20*)
<ctgmath> (C++11/17/20*)

<cstdalign> (C++11/17/20*)

<ciso646> (直到 C++20)

 

此头文件是 输入/输出 库的一部分。

包含 <iostream> 的行为如同定义了一个类型为 std::ios_base::Init 的静态存储持续时间对象,其构造函数在它是第一个被构造的 std::ios_base::Init 对象时初始化标准流对象,并且其析构函数在它是最后一个被销毁的 std::ios_base::Init 对象时刷新这些对象(除了 cinwcin)。

内容

包含

(C++11)
std::ios_base 类,std::basic_ios 类模板和类型定义[编辑]
std::basic_streambuf 类模板[编辑]
(C++11)
std::basic_istream 类模板和类型定义[编辑]
(C++11)
std::basic_ostreamstd::basic_iostream 类模板和类型定义[编辑]

对象

从标准 C 输入流 stdin 读取
(全局对象)[编辑]
写入标准 C 输出流 stdout
(全局对象)[编辑]
写入标准 C 错误流 stderr,无缓冲
(全局对象)[编辑]
写入标准 C 错误流 stderr
(全局对象)[编辑]

[编辑] 概要

#include <ios>
#include <streambuf>
#include <istream>
#include <ostream>
 
namespace std {
  extern istream cin;
  extern ostream cout;
  extern ostream cerr;
  extern ostream clog;
 
  extern wistream wcin;
  extern wostream wcout;
  extern wostream wcerr;
  extern wostream wclog;
}

[编辑] 缺陷报告

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

DR 应用于 发布的行为 正确行为
LWG 155 C++98 静态对象的类型为 std::basic_ios::Init
(不完全错误,但措辞具有误导性)
更正为 std::ios_base::Init
LWG 1123 C++98 包含 <iostream> 不保证
构建 std::ios_base::Init 对象
保证