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>
wcin
对象
<iostream>
std::
wcin
extern basic_istream<wchar_t> wcin;
标准输入流(宽字符)
类
wistream
的对象,代表面向宽字符(
wchar_t
类型)的
标准输入流
。它对应于
C流
stdin
。
标准输入流
是环境决定的字符源。通常假定它是来自外部源的输入,例如键盘或文件。
作为
basic_istream
类的一个对象,字符可以通过提取运算符(
operator>>
)以格式化数据的方式检索,也可以使用
read
等成员函数以非格式化数据的方式检索。
该对象在头文件
<iostream>
中声明,具有
外部链接
和
静态存储期
:它在程序的整个生命周期内都存在。
在
静态初始化顺序
方面,
wcin
保证在
ios_base::Init
类型对象的第一次构造时被正确构造和初始化。
在
静态初始化顺序
方面,
wcin
保证在
ios_base::Init
类型对象的第一次构造时被正确构造和初始化,包含
<iostream>
至少算作一次对此类具有
静态存储期
的对象的初始化。
wcin
与标准输出流
wcout
(参见
basic_ios::tie
)
关联
(
tied
),这意味着在对
wcin
进行的每次 I/O 操作之前,
wcout
的缓冲区都会被
刷新
(参见
basic_ostream::flush
)。
默认情况下,
wcin
与
stdin
同步(参见
ios_base::sync_with_stdio
)。
程序不应混淆对
wcin
的输入操作与对
cin
(或对
stdin
的其他窄定向输入操作)的输入操作:一旦对其中任何一个进行了输入操作,
标准输入流
就会获得一个定向(
窄
或
宽
),该定向只能通过在
stdin
上调用
freopen
来安全地更改。
有关
wcin
所支持操作的更多信息,请参见其类型的参考:
basic_istream
。
另见
istream
输入流
(类)
cin
标准输入流
(对象)
、wcout
标准输出流 (宽)
(对象)