在C++中,使用ofstream
可以創建一個新的文件并打開它,以便向其中寫入數據。下面是一個簡單的示例代碼,展示如何使用ofstream
創建一個名為example.txt
的文件并寫入數據:
#include <iostream>
#include <fstream>
int main() {
// 創建一個名為example.txt的文件并打開它
std::ofstream outfile("example.txt");
// 檢查文件是否成功打開
if(outfile.is_open()){
std::cout << "文件成功創建并打開" << std::endl;
// 向文件中寫入數據
outfile << "Hello, world!" << std::endl;
// 關閉文件
outfile.close();
} else {
std::cout << "文件創建失敗" << std::endl;
}
return 0;
}
在上面的代碼中,首先包含了<fstream>
頭文件,然后創建了一個名為outfile
的ofstream
對象,并傳入文件名example.txt
作為參數。然后使用is_open()
函數檢查文件是否成功打開,如果成功則向文件中寫入數據,并最后關閉文件。
編譯并運行上面的代碼,就會在當前目錄下創建一個名為example.txt
的文件,并向其中寫入了Hello, world!
這行數據。