Lire en anglais

Partager via


basic_ostream::put

Place un caractère dans un flux.

basic_ostream<_Elem, _Tr>& put(
    char_type _Ch
);

Paramètres

  • _Ch
    Caractère.

Valeur de retour

Une référence à l'objet de basic_ostream.

Notes

La fonction de sortie non formatée insère l'élément _Ch.Elle retourne *this.

Exemple

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

int main( ) 
{
   using namespace std;
   cout.put( 'v' );
   cout << endl;
   wcout.put( L'l' );
}
  

Configuration requise

en-tête : <ostream>

l'espace de noms : DST

Voir aussi

Référence

basic_ostream Class

programmation iostream

conventions d'iostreams