用c ++编写的文件操作

时间:2010-07-28 11:05:24

标签: c++

例如我们在c ++中创建了如何在此文件中写入内容然后在屏幕上输出的文件?

2 个答案:

答案 0 :(得分:1)

阅读this,然后回来询问您是否有更具体的问题,谢谢。

答案 1 :(得分:0)

取自here

写作:

#include <iostream>
#include <fstream>
using namespace std;

int main () {
    ofstream myfile;
    myfile.open ("example.txt");
    myfile << "Writing this to a file.\n";
    myfile.close();
    return 0;
}

读:

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main () {
    string line;
    ifstream myfile("example.txt");
    while(getline(myfile,line)) {
        cout << line << endl;
    }
    myfile.close();
    return 0;
}

你应该真的使用谷歌。