C++ 利用偏移量对文件进行操作
对输入流操作:seekg()与tellg()
对输出流操作:seekp()与tellp()
C++中seep()和seekg()函数功能
- seekp:设置输出文件流的文件流指针位置
- seekg:设置输入文件流的文件流指针位置
函数原型:
- ostream& seekp( streampos pos );
- ostream& seekp( streamoff off, ios::seek_dir dir );
- istream& seekg( streampos pos );
- istream& seekg( streamoff off, ios::seek_dir dir );
函数参数
- pos:新的文件流指针位置值,可以是正负数值,正的表示向后偏移,负的表示向前偏移。
- off:需要偏移的值
- dir:搜索的起始位置
dir参数用于对文件流指针的定位操作上,代表搜索的起始位置
在ios中定义的枚举类型: enum seek_dir {beg, cur, end};
每个枚举常量的含义:
- ios::beg:文件流的起始位置
- ios::cur:文件流的当前位置
- ios::end:文件流的结束位置
ifstream read_file("test.txt");
assert(read_file);
read_file.seekg(0,io