streampos
存在缓冲区指针或文件指针的当前位置。
typedef fpos<mbstate_t> streampos;
备注
该类型是 fpos的 AMP_LTmbstate_tAMP_GT 同义词。
示例
// ios_streampos.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>
int main( )
{
using namespace std;
ofstream x( "iostream.txt" );
x << "testing";
streampos y = x.tellp( );
cout << y << endl;
}
要求
**标题:**ios
命名空间: std