共用方式為


basic_ostream::basic_ostream

建構 basic_ostream 物件。

explicit basic_ostream(
    basic_streambuf<_Elem, _Tr> *_Strbuf,
    bool _Isstd = false
);
basic_ostream(
    basic_ostream&& _Right
);

參數

  • _Strbuf
    basic_streambuf型別的物件。

  • _Isstd
    true ,如果這是標準資料流;則為,否則為 false。

  • _Right
    out basic_ostream型別物件的右值參考。

備註

第一個建構函式會呼叫 init初始化基底類別 (_Strbuf)。 第二個建構函式會呼叫 basic_ios::move初始化基底類別(_Right)。

範例

請參閱 basic_ofstream::basic_ofstream 範例進一步了解輸出資料流。

需求

標題: <ostream>

命名空間: std

請參閱

參考

basic_ostream 類別

iostream 程式設計

iostreams 慣例