Partager via


basic_ostream::flush

Vide le tampon.

basic_ostream<_Elem, _Tr>& flush( );

Valeur de retour

Référence à l'objet basic_ostream.

Notes

Si rdbuf n'est pas un pointeur null, la fonction appelle rdbuf->pubsync. S'il retourne -1, la fonction appelle setstate(badbit). Cela retourne *this.

Exemple

// basic_ostream_flush.cpp
// compile with: /EHsc
#include <iostream>

int main( ) 
{
   using namespace std;
   cout << "test";
   cout.flush();
}
  

Configuration requise

En-tête : <ostream>

Espace de noms : std

Voir aussi

Référence

basic_ostream, classe

iostream, programmation

iostreams, conventions