请问在c++中gcount函数如何使用的啊?


请问在c++中gcount函数如何使用的啊?

文章插图
istream::gcountint gcount() const;RemarksReturns the number of characters extracted by the last unformatted input function. Formatted extraction operators may call unformatted input functions and thus reset this number.example:#include 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输出1gcount() 用来统计 read() 读到的字符数
【请问在c++中gcount函数如何使用的啊?】

    推荐阅读