std:: flush_emit
| 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)
|
| Floating-point formatting | |||||||||||
|
|||||||||||
| Integer formatting | |||||||||||
| Boolean formatting | |||||||||||
| Field width and fill control | |||||||||||
| Other formatting | |||||||||||
| Whitespace processing | |||||||||||
| Output flushing | |||||||||||
|
|||||||||||
| Status flags manipulation | |||||||||||
| Time and money I/O | |||||||||||
| Quoted manipulator | |||||||||||
|
(C++14)
|
|||||||||||
|
Definiert im Header
<ostream>
|
||
|
template
<
class
CharT,
class
Traits
>
std:: basic_ostream < CharT, Traits > & flush_emit ( std:: basic_ostream < CharT, Traits > & os ) ; |
(seit C++20) | |
Leert die Ausgabesequenz
os
wie durch Aufruf von
os.
flush
(
)
. Dann, falls
os.
rdbuf
(
)
tatsächlich auf einen
std::
basic_syncbuf
<
CharT, Traits, Allocator
>
buf
zeigt, ruft
buf.
emit
(
)
auf.
Dies ist ein Nur-Ausgabe-I/O-Manipulator, er kann mit einem Ausdruck wie
out
<<
std
::
flush_emit
für jeden
out
vom Typ
std::basic_ostream
aufgerufen werden.
Inhaltsverzeichnis |
Parameter
| os | - | Referenz auf den Ausgabestream |
Rückgabewert
os
(Referenz auf den Stream nach der Manipulation)
Beispiel
|
Dieser Abschnitt ist unvollständig
Grund: Kein Beispiel |
Siehe auch
|
synchronisiert mit dem zugrundeliegenden Speichergerät
(öffentliche Elementfunktion von
std::basic_ostream<CharT,Traits>
)
|