Difference between revisions of "cpp/io"
m (→Print functions: +anchor to this section without "(since C++23)" tag) |
m (→See also: +Filesystem library) |
||
Line 162: | Line 162: | ||
==={{rl|c|C-style I/O}}=== | ==={{rl|c|C-style I/O}}=== | ||
C++ also includes the {{rl|c|input/output functions defined by C}}, such as {{lc|std::fopen}}, {{lc|std::getc}}, etc. | C++ also includes the {{rl|c|input/output functions defined by C}}, such as {{lc|std::fopen}}, {{lc|std::getc}}, etc. | ||
+ | |||
+ | ===See also=== | ||
+ | {{dsc begin}} | ||
+ | {{dsc|[[cpp/filesystem|Filesystem library]] {{mark since c++17}}}} | ||
+ | {{dsc end}} | ||
{{langlinks|ar|de|es|fr|it|ja|pl|pt|ru|zh}} | {{langlinks|ar|de|es|fr|it|ja|pl|pt|ru|zh}} |
Latest revision as of 07:56, 9 June 2024
C++ includes the following input/output libraries: an OOP-style stream-based I/O library, print-based family of functions(since C++23), and the standard set of C-style I/O functions.
Contents |
[edit] Stream-based I/O
The stream-based input/output library is organized around abstract input/output devices. These abstract devices allow the same code to handle input/output to files, memory streams, or custom adaptor devices that perform arbitrary operations (e.g. compression) on the fly.
Most of the classes are templated, so they can be adapted to any basic character type. Separate typedefs are provided for the most common basic character types (char and wchar_t). The classes are organized into the following hierarchy:
Inheritance diagram
Abstraction | |
Defined in header
<ios> | |
manages formatting flags and input/output exceptions (class) | |
manages an arbitrary stream buffer (class template) | |
Defined in header
<streambuf> | |
abstracts a raw device (class template) | |
Defined in header
<ostream> | |
wraps a given abstract device (std::basic_streambuf) and provides high-level output interface (class template) | |
Defined in header
<istream> | |
wraps a given abstract device (std::basic_streambuf) and provides high-level input interface (class template) | |
wraps a given abstract device (std::basic_streambuf) and provides high-level input/output interface (class template) | |
File I/O implementation | |
Defined in header
<fstream> | |
implements raw file device (class template) | |
implements high-level file stream input operations (class template) | |
implements high-level file stream output operations (class template) | |
implements high-level file stream input/output operations (class template) | |
String I/O implementation | |
Defined in header
<sstream> | |
implements raw string device (class template) | |
implements high-level string stream input operations (class template) | |
implements high-level string stream output operations (class template) | |
implements high-level string stream input/output operations (class template) | |
Array I/O implementations | |
Defined in header
<spanstream> | |
(C++23) |
implements raw fixed character buffer device (class template) |
(C++23) |
implements fixed character buffer input operations (class template) |
(C++23) |
implements fixed character buffer output operations (class template) |
(C++23) |
implements fixed character buffer input/output operations (class template) |
Defined in header
<strstream> | |
(deprecated in C++98)(removed in C++26) |
implements raw character array device (class) |
(deprecated in C++98)(removed in C++26) |
implements character array input operations (class) |
(deprecated in C++98)(removed in C++26) |
implements character array output operations (class) |
(deprecated in C++98)(removed in C++26) |
implements character array input/output operations (class) |
Synchronized output | |
Defined in header
<syncstream> | |
(C++20) |
synchronized output device wrapper (class template) |
(C++20) |
synchronized output stream wrapper (class template) |
[edit] Typedefs
The following typedefs for common character types are provided in namespace std
:
[edit] Predefined standard stream objects
Defined in header
<iostream> | |
reads from the standard C input stream stdin (global object) | |
writes to the standard C output stream stdout (global object) | |
writes to the standard C error stream stderr, unbuffered (global object) | |
writes to the standard C error stream stderr (global object) |
[edit] I/O Manipulators
The stream-based I/O library uses I/O manipulators (e.g. std::boolalpha, std::hex, etc.) to control how streams behave.
[edit] Types
The following auxiliary types are defined:
Defined in header
<ios> | |
represents relative file/stream position (offset from fpos), sufficient to represent any file size (typedef) | |
represents the number of characters transferred in an I/O operation or the size of an I/O buffer (typedef) | |
represents absolute position in a stream or a file (class template) |
The following typedef names for std::fpos<std::mbstate_t> are provided:
Defined in header
<iosfwd> | |
Type | Definition |
std::streampos
|
std::fpos<std::char_traits<char>::state_type> |
std::wstreampos
|
std::fpos<std::char_traits<wchar_t>::state_type> |
std::u8streampos (C++20)
|
std::fpos<std::char_traits<char8_t>::state_type> |
std::u16streampos (C++11)
|
std::fpos<std::char_traits<char16_t>::state_type> |
std::u32streampos (C++11)
|
std::fpos<std::char_traits<char32_t>::state_type> |
[edit] Error category interface
Defined in header
<ios> | |
(C++11) |
the IO stream error codes (enum) |
(C++11) |
identifies the iostream error category (function) |
[edit] Print functions (since C++23)
The Unicode-aware print-family functions that perform formatted I/O on text that is already formatted. They bring all the performance benefits of std::format, are locale-independent by default, reduce global state, avoid allocating a temporary std::string object and calling operator<<, and in general make formatting more efficient compared to iostreams and stdio.
The following print-like functions are provided:
Defined in header
<print> | |
(C++23) |
prints to stdout or a file stream using formatted representation of the arguments (function template) |
(C++23) |
same as std::print except that each print is terminated by additional new line (function template) |
prints to Unicode capable stdout or a file stream using type-erased argument representation (function) | |
prints to stdout or a file stream using type-erased argument representation (function) | |
Defined in header
<ostream> | |
(C++23) |
outputs formatted representation of the arguments (function template) |
(C++23) |
outputs formatted representation of the arguments with appended '\n' (function template) |
[edit] C-style I/O
C++ also includes the input/output functions defined by C, such as std::fopen, std::getc, etc.
[edit] See also
Filesystem library (since C++17) |