wstreampos

存在缓冲区的指针或文件指针的当前位置。

typedef fpos<mbstate_t> wstreampos;

备注

类型是的同义词。mbstate_t><fpos

示例

// 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;
}
7

要求

页眉: <ios>

命名空间: std

请参见

参考

fpos 类

iostream 编程

iostreams 约定

其他资源

fpos 成员

ios 成员