zoukankan      html  css  js  c++  java
  • C/C++文件指针偏移

    C语言中fseek()的功能:

    函数原型:int fseek(FILE *fp, LONG offset, int origin)

    参数含义:fp 文件指针 offset 相对于origin规定的偏移位置量 origin 指针移动的起始位置,可设置为以下三种情况: SEEK_SET 文件开始位置 SEEK_CUR 文件当前位置 SEEK_END 文件结束位置


    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:文件流的结束位置


  • 相关阅读:
    oracle(八)块清除
    oracle(七)索引
    oracle(六) physical read and logical read
    oracle动态视图(一)stat
    oracle(五)tkprof 使用 transient kernal profile 侧面 轮廓
    dbms_stats.gather_table_stats详解
    oracle(四) 常用语句
    oracle(三) SQL语句
    [Swift]LeetCode269. 外星人词典 $ Alien Dictionary
    [Mac]如何让两个窗口各占半个屏幕
  • 原文地址:https://www.cnblogs.com/meihao1203/p/8861446.html
Copyright © 2011-2022 走看看