ios_base::seekdir

标识为偏移量操作起始点。

namespace std {
   class ios_base {
   public:
      typedef implementation-defined-enumerated-type seekdir;
      static const seekdir beg;
      static const seekdir cur;
      static const seekdir end;
      ...
   };
}

备注

该类型是描述对象可以存储为参数用于中查找模式若干iostream选件类的成员函数的枚举类型。 清单的标志值为:

  • beg,用于查找(修改当前读取或写入位置)相对顺序(数组、流或文件)的开头。

  • cur,为相对于当前位置中查找在顺序中。

  • 结束,为相对顺序的末尾中查找。

示例

// ios_base_seekdir.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

int main ( ) 
{
   using namespace std;
   fstream file;
   file.open( "rm.txt", ios_base::out | ios_base::trunc );

   file << "testing";
   file.seekp( 0, ios_base::beg );
   file << "a";
   file.seekp( 0, ios_base::end );
   file << "a";
}

文件的内容

aestinga

要求

标头: <ios>

命名空间: std

请参见

参考

ios_base Class

iostream编程

(mfc)约定