cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<iostream>
对象
、cerr
cin
、clog
、cout
、wcerr
wcin
、wclog
、wcout
参考
<iostream>
、cerr
对象
<iostream>
std::
cerr
extern ostream cerr;
标准错误输出流
类
ostream
的对象,表示面向窄字符(
char
类型)的
标准错误流
。它对应于
C 流
stderr
。
标准错误流
是由环境决定的字符输出目的地。这个目的地可能被多个标准对象(如
cout
或
clog
)共享。
作为一个
ostream
类的对象,可以使用插入运算符 (
operator<<
) 将格式化数据写入其中,也可以使用成员函数(如
write
)写入非格式化数据。
该对象在头文件
<iostream>
中声明,具有
外部链接
和
静态存储期
:它在程序的整个生命周期内都存在。
就
静态初始化顺序
而言,保证
cerr
在类型为
ios_base::Init
的对象首次构造时不晚于其被正确构造和初始化。
cerr
不与任何其他输出流
绑定
(见
ios::tie
)。
就
静态初始化顺序
而言,保证
cerr
在类型为
ios_base::Init
的对象首次构造时不晚于其被正确构造和初始化,包含
<iostream>
至少算作对此类具有
静态存储期
的对象进行了一次初始化。
cerr
与标准输出流
cout
绑定
(见
ios::tie
),这表示在对
cerr
执行每个 I/O 操作之前,
cout
的缓冲区都会被
刷新
(见
ostream::flush
)。
默认情况下,
cerr
与
stderr
同步(见
ios_base::sync_with_stdio
)。
程序不应将对
cerr
的输出操作与对
wcerr
或
wclog
的输出操作(或与对
stderr
的其他宽字符导向的输出操作)混合使用:一旦对其中任一者执行了输出操作,
标准错误流
就会获得一种确定的流向(
窄字符
或
宽字符
),之后只能通过在
stderr
上调用
freopen
才能安全地更改该流向。
有关
cerr
支持的操作的更多信息,请参阅其类型
ostream
的参考文档。
另见
ostream
输出流
(类)
、cout
标准输出流
(对象)
、clog
标准日志输出流
(对象)
cin
标准输入流
(对象)
、wcerr
标准错误输出流 (宽字符)
(对象)