Partager via


basic_ostringstream::basic_ostringstream

Crée un objet avec du type basic_ostringstream.

explicit basic_ostringstream(
   ios_base::openmode _Mode = ios_base::out
);
explicit basic_ostringstream(
   const basic_string<Elem, Tr, Alloc>& _Str,
   ios_base::openmode _Mode = ios_base::out
);

Paramètres

  • _Mode
    L'une des énumérations dans ios_base::openmode.

  • _Str
    Objet de type basic_string.

Notes

Le premier constructeur initialise la classe de base en appelant basic_ostream(sb), où sb est l'objet stocké de la classe basic_stringbuf<Elem, tr, Alloc>.Il initialise également sb par le basic_stringbuf< appelantElem, tr, Alloc> (_Mode | ios_base::out).

Le deuxième constructeur initialise la classe de base par le basic_ostream appelant (sb).Il initialise également sb par le basic_stringbuf< appelantElem, tr, Alloc> (_Str, _Mode | ios_base::out).

Configuration requise

en-tête : <sstream>

l'espace de noms : DST

Voir aussi

Référence

basic_ostringstream Class

programmation iostream

conventions d'iostreams