Partager via


basic_ostream::basic_ostream

Construit un objet basic_ostream.

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

Paramètres

  • _Strbuf
    Un objet de type basic_streambuf.

  • _Isstd
    true s'il s'agit d'un flux standard ; sinon, false.

  • _Right
    Une référence rvalue à un objet de type basic_ostream.

Notes

Le premier constructeur initialise la classe de base en appelant init(_Strbuf).Le deuxième constructeur initialise la classe de base en appelant basic_ios::move(_Right).

Exemple

Consultez l'exemple pour basic_ofstream::basic_ofstream pour en savoir plus sur les flux de sortie.

Configuration requise

en-tête : <ostream>

l'espace de noms : DST

Voir aussi

Référence

basic_ostream Class

programmation iostream

conventions d'iostreams