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 标准日志输出流(宽)
广告