在 C++ 中,使用 fstream 頭檔和 ifstream 或 ofstream 類別開啟檔案。具體步驟如下:開啟檔案進行讀取操作:ifstream ifs("檔案名稱");開啟檔案進行寫入操作:ofstream ofs("檔案名稱");
在 C++ 中開啟檔案涉及使用 fstream
頭檔和 ifstream
或 ofstream
類別。以下是如何在C++ 中開啟檔案的步驟:
ifstream ifs("input.txt"); if (ifs.is_open()) { // 文件已成功打开,可以读取数据 } else { // 文件打开失败,处理错误 }
ofstream ofs("output.txt"); if (ofs.is_open()) { // 文件已成功打开,可以写入数据 } else { // 文件打开失败,处理错误 }
#include <iostream> #include <fstream> using namespace std; int main() { // 打开文件进行读操作 ifstream ifs("input.txt"); if (ifs.is_open()) { string line; while (getline(ifs, line)) { // 从文件中读取一行数据并处理它 cout << line << endl; } ifs.close(); // 读取完成后关闭文件 } // 打开文件进行写操作 ofstream ofs("output.txt"); if (ofs.is_open()) { ofs << "Hello, world!" << endl; // 将数据写入文件 ofs.close(); // 写入完成后关闭文件 } return 0; }
在這個範例中,input.txt
用來讀取數據,而output.txt
則是用來寫入資料。
以上是如何使用C++開啟檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!