strstreambuf::pcount
返回中元素的数目的计数写入控制序列。
streamsize pcount( ) const;
返回值
元素的数目的计数写入控制序列。
备注
具体而言,如果,pptr 是 null 指针,函数返回零。 否则,它返回 pptr )。pbase
示例
// strstreambuf_pcount.cpp
// compile with: /EHsc
#include <iostream>
#include <strstream>
using namespace std;
int main( )
{
strstream x;
x << "test1";
cout << x.rdbuf( )->pcount( ) << endl;
x << "test2";
cout << x.rdbuf( )->pcount( ) << endl;
}
Output
5
10
要求
页眉: <strstream>
命名空间: std