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 类

iostream 编程

iostreams 约定