Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 1.71 KB

ostream.md

File metadata and controls

20 lines (16 loc) · 1.71 KB

ostream

  • ostream[meta header]

<ostream>ヘッダでは、出力処理に関するクラスやマニピュレータ(の実体である関数)などが定義されている。

型と関数

名前 説明 対応バージョン
basic_ostream 出力ストリーム (class template)
endl 改行を出力し、バッファを出力して空にする (maniplator, function template)
ends ヌル文字を出力する (maniplator, function template)
flush バッファを出力して空にする (maniplator, function template)
flush_emit std::basic_osyncstreamをフラッシュし、保留中の出力を転送する (maniplator, function template) C++20
emit_on_flush std::basic_osyncstreamの同期時排出ポリシーをtrueにする (maniplator, function template) C++20
noemit_on_flush std::basic_osyncstreamの同期時排出ポリシーをfalseにする (maniplator, function template) C++20

バージョン

言語

  • C++98