fpos::operator streamoff
streamoff型のオブジェクトへの fpos 型のオブジェクトをキャストします。
operator streamoff( ) const;
解説
このメンバー関数は fpos_t のメンバー オブジェクトの一部として保存されている格納されたオフセットのメンバー オブジェクトと追加のオフセットを返します。
使用例
// fpos_op_streampos.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
#include <fstream>
int main( )
{
using namespace std;
streamoff s;
ofstream file( "rdbuf.txt");
fpos<mbstate_t> f = file.tellp( );
// Is equivalent to ..
// streampos f = file.tellp( );
s = f;
cout << s << endl;
}
必要条件
ヘッダー: <ios>
名前空間: std