다음을 통해 공유


iostreams 규칙

The iostreams headers support conversions between text and encoded forms, and input and output to external files:

<fstream>

<iomanip>

<ios>

<iosfwd>

<iostream>

<istream>

<ostream>

<sstream>

<streambuf>

<strstream>

The simplest use of iostreams requires only that you include the header <iostream>. You can then extract values from cin or wcin to read the standard input. The rules for doing so are outlined in the description of the class basic_istream 클래스. You can also insert values to cout or wcout to write the standard output. The rules for doing so are outlined in the description of the class basic_ostream 클래스. Format control common to both extractors and insertors is managed by the class basic_ios 클래스. Manipulating this format information in the guise of extracting and inserting objects is the province of several manipulators.

You can perform the same iostreams operations on files that you open by name, using the classes declared in <fstream>. To convert between iostreams and objects of class basic_string 클래스, use the classes declared in <sstream>. To do the same with C strings, use the classes declared in <strstream>.

The remaining headers provide support services, typically of direct interest to only the most advanced users of the iostreams classes.

참고 항목

참조

C++ 표준 라이브러리 개요

iostream 프로그래밍

C++ 표준 라이브러리의 스레드 보안