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: 標準