共用方式為


wstreampos

保留目前的緩衝區指標或檔案指標的位置。

typedef fpos<mbstate_t> wstreampos;

備註

型別就是同義字的 fpos<mbstate_t>。

範例

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

Namespace: 標準

請參閱

參考

fpos Class

iostream 程式設計

iostreams 慣例

其他資源

fpos 成員

<ios> 成員