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

要求

标头: <ios>

命名空间: std

请参见

参考

fpos Class

iostream编程

(mfc)约定