basic_istream::gcount
Restituisce il numero di caratteri letti durante l'ultimo input non formattato.
streamsize gcount( ) const;
Valore restituito
Il conteggio di estrazione.
Note
Utilizzo basic_istream::get leggere caratteri non formattato.
Esempio
// basic_istream_gcount.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;
int main( )
{
cout << "Type the letter 'a': ";
ws( cin );
char c[10];
cin.get( &c[0],9 );
cout << c << endl;
cout << cin.gcount( ) << endl;
}
aaType
FakePre-fa350531fd1f4d048f809d8be1fcccd3-4f7d045cc4a2455d921fc782a436a92d
Requisiti
istream <diIntestazione: >
Spazio dei nomi: std