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