1. 程式人生 > >C++寫檔案

C++寫檔案

1、標頭檔案

#include<fstream>

2、fstream物件

fstream out("./output.out");//沒有檔案返回out==0,不會建立檔案
out<<"hello world"<<endl;

    要想fstream物件在沒有檔案時自動建立物件:

fstream out("output.out",ofstream::out);
//或者
fstream out("output.out",ofstream::app);

3、ofstream物件

ofstream out(“./output.out”);//沒有檔案建立檔案