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