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