C++ 标准库 - <iostream>
描述
它用于标准输入/输出流库。
声明
以下是 iosstream 函数的声明。
C++98
Including this header may automatically include other headers, such as <ios>, <streambuf>, <istream>, <ostream> and/or <iosfwd>.
C++11
Including <iostream> automatically includes also <ios>, <streambuf>, <istream>, <ostream> and <iosfwd>.
对象
iosstream 的对象应该是这样 −
窄字符(char)
序号 | 字符 | 定义 |
---|---|---|
1 | cin | 标准输入流 |
2 | cout | 标准输出流 |
3 | cerr | 错误的标准输出流 |
4 | clog | 日志标准输出流 |
宽字符 (wchar_t)
序号 | 字符 | 定义 |
---|---|---|
1 | wcin | 标准输入流(宽) |
2 | wcout | 标准输出流(宽) |
3 | wcerr | 错误的标准输出流(面向宽) |
4 | wclog | 日志记录的标准输出流(宽) |