std::basic_iostream<CharT,Traits>:: ~basic_iostream
From cppreference.net
<
cpp
|
io
|
basic iostream
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(C++20)
|
||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
| Synchronized Output | ||||
|
(C++20)
|
||||
| Types | ||||
| Error category interface | ||||
|
(C++11)
|
||||
|
(C++11)
|
std::basic_iostream
| Member functions | ||||
|
basic_iostream::~basic_iostream
|
||||
| Protected member functions | ||||
|
virtual
~basic_iostream
(
)
;
|
||
입출력 스트림을 소멸합니다.
참고 사항
이 소멸자는 기본 스트림 버퍼(
rdbuf()
)에 대해 어떠한 연산도 수행하지 않습니다:
std::basic_fstream
및
std::basic_stringstream
과 같은 파생 스트림들의 소멸자들이 스트림 버퍼들의 소멸자를 호출할 책임이 있습니다.