Condividi tramite


basic_istream::unget

Inserire il carattere più recentemente lettura nel flusso.

basic_istream<Elem, Tr>& unget( );

Valore restituito

Il flusso (*this).

Note

funzione di input non formattato riavvio dell'elemento precedente nel flusso, se possibile, ad esempio se la chiamata a rdbuf ->sungetc. Se rdbuf è un puntatore null, o se la chiamata a sungetc restituisce traits_type::EOF, le chiamate di funzione setstate(badbit). Tuttavia, restituisce *this.

Per informazioni su come unget potrebbe non riuscire, vedere basic_streambuf::sungetc.

Esempio

// basic_istream_unget.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;

int main( ) 
{
   char c[10], c2;
   
   cout << "Type 'abc': ";
   c2 = cin.get( );
   cin.unget( );
   cin.getline( &c[0], 9 );
   cout << c << endl;
}
  abcabcType

FakePre-b7c95566195d40d48120f7ccd7c1a44d-a2bf638bc46f45fd93f3ff06ae44ab6c

Requisiti

istream <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe basic_istream

Programmazione di iostream

Convenzioni di iostream