gcount

gcount() 方法返回最後一個非格式化的抽取方法讀取的字元數。

函式簡介,函式聲明,函式套用舉例,

函式簡介

這意味著字元由get(),getline()、ignore()、或read()方法讀取的,不是由抽取操作符( >> )讀取的,抽取操作符對輸入進行格式化,使之與特定的數據類型匹配

函式聲明

( basic_istream<charT,traits> )
streamsize gcount () const;

函式套用舉例

example:
#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;
}
輸入
a
輸出
a
1

相關詞條

熱門詞條

聯絡我們