次の方法で共有


basic_istream::gcount

最後の書式なしの入力時に読み取られる文字数を返します。

streamsize gcount( ) const;

戻り値

サンプルの数。

解説

書式指定されていない文字を読み取るために basic_istream::get を使用します。

使用例

// 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;
}
  は
文字 " a:入力します。1

必要条件

ヘッダー: <istream>

名前空間: std

参照

関連項目

basic_istream Class

入出力ストリームのプログラミング

入出力ストリームの規則