第十五周阅读程序3:文件流与文件位置标记有关的成员函数

问题及代码:

#include<iostream>#include <fstream>using namespace std;const char * filename = "a.txt";int main (){long l,m;ifstream file (filename, ios::in|ios::binary);l = file.tellg();file.seekg (0, ios::end);m = file.tellg();file.close();cout << "size of " << filename;cout << " is " << (m-l) << " bytes.\n";return 0;}运行结果:

l得到开始的位置

然后将指针移到最后

m得到结束的位置

输出m-l,,即为字节数

#include <fstream>using namespace std;int main (){long pos;ofstream outfile;outfile.open ("test.txt");outfile.write ("This is an apple",16);pos=outfile.tellp();outfile.seekp (pos-7);outfile.write (" sam",4);outfile.close();return 0;}输出字符串,pos得到当前位置,应该是16

然后将指针从开始移到16-7=9的位置上,输出" sam"

运行结果:

#include <iostream> #include <fstream> using namespace std;int main() {fstream outfile,infile;outfile.open("data.txt",ios::out);for (int i=0;i<26;i++)outfile<<(char)('A'+i);outfile.close();infile.open("data.txt",ios::in);char ch;infile.seekg(6,ios::beg);if(infile.get(ch))cout<<ch;infile.seekg(8,ios::beg);if(infile.get(ch))cout<<ch;infile.seekg(-8,ios::end);if(infile.get(ch))cout<<ch;cout<<endl;infile.close();return 0; }运行结果:

知识点总结:

tellg()函数,得到输入文件位置标记的当前位置;

tellp()函数,得到输出文件位置标记的当前位置;

seekg(位移量,参照位置)函数,以参照位置为基础移动若干字节;

seekg(文件中的位置)函数,将输入文件标记移到指定位置;

seekp(位移量,参照位置)函数,以参照位置为基础移动若干字节;

seekp(文件中的位置)函数,将输出文件位置标记移到指定位置;

gcount()函数,得到最后一次输入所读入的字节数。

两粒种子,一片森林。

第十五周阅读程序3:文件流与文件位置标记有关的成员函数

相关文章:

你感兴趣的文章:

标签云: