添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Standard Stream Objects

The <iostream> header declares the eight standard stream objects . For other declarations, see http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt11ch24.html and the I/O forward declarations

They are required by default to cooperate with the global C library's FILE streams, and to be available during program startup and termination. For more information, see the HOWTO linked to above.

  • istream std::cin
  • ostream std::cout
  • ostream std::cerr
  • ostream std::clog
  • wistream std::wcin
  • wostream std::wcout
  • wostream std::wcerr
  • wostream std::wclog

    Detailed Description

    This is a Standard C++ Library header.

    Definition in file iostream .

  •