当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。