该的std :: basic_istream :: gcount的()用于计算给定字符串中的字符。它返回上一次未经格式化的输入操作提取的字符数。这些函数将返回未格式化的输入操作:get(),getline(),ignore(),peek(),read()等。
头文件:
句法:
streamsize gcount() const
参数:此方法不接受任何参数。
返回值:返回上一次未经格式化的输入操作提取的字符数。
下面是说明std :: basic_istream :: gcount()的程序:
程序1:
// C++ code to illustrate std::gcount()
#include
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/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。