第14周-閱讀專案3-seekg()、tellg()等函式的功能及其用法

kewlgrl發表於2015-06-15

閱讀下面的程式,指出其功能,體會seekg()、tellg()等函式的功能及其用法 


問題及程式碼:

#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;
}



執行結果:




功能:

標記到檔案開頭,統計檔案中的字元數量。


問題及程式碼:

#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;
}


執行結果:



功能:

移動當前游標位置,將This is an apple中的apple改為simple並輸出。


問題及程式碼:

#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; 
}


執行結果:



功能:

移動位置並輸出指定位置上的變數值。


知識點總結:
seekg()、tellg()等函式的功能及其用法 。

學習心得:

(⊙o⊙)…要注意字元最後以\0作為結束。。

相關文章