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>
、clog
对象
<iostream>
std::
clog
extern ostream clog;
用于记录的标准输出流
类
ostream
的对象,它代表了面向窄字符(类型为
char
)的
标准日志流
。它与
cerr
一起,对应于
C 流
stderr
。
标准日志流
是环境所确定的字符目标。此目标可以由多个标准对象(如
cout
或
cerr
)共享。
作为类
ostream
的对象,可以通过插入运算符(
operator<<
)格式化写入数据,也可以使用成员函数(如
write
)以未格式化的方式写入数据。
该对象在头文件
<iostream>
中声明,具有
外部链接
和
静态存储期
:它在程序的整个生命周期内都存在。
就
静态初始化顺序
而言,
clog
保证在构造
ios_base::Init
类型的对象时,至少不晚于该对象被构造完成。
就
静态初始化顺序
而言,
clog
保证在构造
ios_base::Init
类型的对象时,至少不晚于该对象被构造完成,而包含
<iostream>
则至少会导致一次具有
静态存储期
的此类对象的初始化。
clog
不会
关联
到任何其他流(参见
ios::tie
)。
默认情况下,
clog
与
stderr
同步(参见
ios_base::sync_with_stdio
)。
程序不应将对
clog
的输出操作与对
wclog
或
wcerr
(或与对
stderr
的其他面向宽字符的输出操作)的输出操作混合:一旦对其中任何一个进行了输出操作,
标准日志流
就会获得一个方向(
窄
或
宽
),该方向只能通过对
stderr
调用
freopen
来安全地更改。
有关
clog
支持的操作的更多信息,请参阅其类型的参考:
ostream
。
另见
ostream
输出流
(类)
、cout
标准输出流
(对象)
、cerr
标准错误输出流
(对象)
cin
标准输入流
(对象)
、wclog
标准日志输出流 (宽)
(对象)