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

请参见

参考

fpos Class

iostream编程

(mfc)约定

其他资源

fpos 成员

ios 成员