streampos
保留目前的緩衝區指標或檔案指標的位置。
typedef fpos<mbstate_t> streampos;
備註
型別就是同義字的 fpos<mbstate_t>。
範例
// ios_streampos.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>
int main( )
{
using namespace std;
ofstream x( "iostream.txt" );
x << "testing";
streampos y = x.tellp( );
cout << y << endl;
}
需求
標頭: <ios>
Namespace: 標準