當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ std::basic_istream::gcount()用法及代碼示例


std::basic_istream::gcount()用於計算給定字符串中的字符。它返回上一次未經格式化的輸入操作提取的字符數。這些函數將返回未格式化的輸入操作:get(),getline(),ignore(),peek(),read()等。

頭文件:

<iostream>

用法:



streamsize gcount() const

參數:此方法不接受任何參數。

返回值:它返回上一次未經格式化的輸入操作提取的字符數。

下麵是說明std::basic_istream::gcount()的程序:

程序1:

// C++ code to illustrate std::gcount() 
  
#include <bits/stdc++.h> 
using namespace std; 
  
// Driver Code 
int main() 
{ 
  
    // Initialise array of characters 
    char arr[20]; 
  
    // Declare string stream 
    istringstream stream("GeeksforGeeks"); 
  
    // Read the string in string stream 
    stream.read(arr, sizeof arr); 
  
    // Print the count of characters in 
    // string "GeeksforGeeks" 
    cout << "The count of characters"
         << " in the string "
         << " is " << stream.gcount() 
         << endl; 
  
    return 0; 
}
輸出:
The count of characters in the string  is 13

參考文獻: http://www.cplusplus.com/reference/istream/basic_istream/gcount/

GeeksforGeeks已經準備了完整的麵試準備課程,其中包括高級視頻,理論,實踐問題,技術支持和更多函數。有關詳細信息,請參閱展示位置100

相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 std::basic_istream::gcount() in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。