共用方式為


fpos::operator streamoff

轉換為 fpos 型別的物件轉換為型別 streamoff的物件。

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

需求

標題: <ios>

命名空間: std

請參閱

參考

fpos 類別

iostream 程式設計

iostreams 慣例