码迷,mamicode.com
首页 > 其他好文 > 详细

seek()和tell()在文件里转移

时间:2019-02-10 13:39:49      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:NPU   width   open   Nging   inpu   rpo   argv   class   lse   

Seek()方法允许在输入和输出流移动到任意的位置,seek()有好几种形式。包含:seekp()

方法和seekg()方法,p是put的意思,g是get的意思;其中输入流里用seekg()函数,输出流里用seekp()函数;

Seekp()和seekg()有两个重载,第一个是:接受一个参数,接受一个绝对位置,

第二个是接受接受有一个移动位置,第二个参数是起始点。

位置 说明
std::ios_base::beg 定位到流的开头
std::ios_base::cur  定位到流的当前位置
std::ios_base::end 定位到流的结尾

 

 

 

 

#include <iostream>
#include <fstream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) 
{
    std::ofstream fout("text.out");
    if(!fout)
    {
        std::cerr << "Error openging the text.out for writing" << std::endl;
    }
    
    fout << "12345";
    std::ios_base::streampos curPos = fout.tellp();
    if(curPos == 5)
    {
        std::cout << "curPos is 5" << std::endl;
    }else
    {
        std::cout << "curPos is not 5" << std::endl;
    }
    
    fout.seekp(2,std::ios_base::beg);
    fout << 0;
    fout.close();
    
    //text.out is 12045
    
    std::ifstream fin("text.out");
    if(!fin)
    {
        std::cerr << "Error openging the text.out for reading" << std::endl;
        return 1;
    }
     
    int textVal;
    fin >> textVal;
    std::cout << textVal << std::endl;
    
    return 0;
}

最后i的textVal是12045

 

seek()和tell()在文件里转移

标签:NPU   width   open   Nging   inpu   rpo   argv   class   lse   

原文地址:https://www.cnblogs.com/boost/p/10359091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!