使用ifstream
可以很方便地讀取文件內容。以下是一個簡單的示例代碼,展示了如何使用ifstream
讀取文件內容:
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt"); // 打開文件
if (file.is_open()) {
std::string line;
while (std::getline(file, line)) { // 逐行讀取文件內容
std::cout << line << std::endl;
}
file.close(); // 關閉文件
} else {
std::cout << "無法打開文件" << std::endl;
}
return 0;
}
在上面的示例中,我們首先創建了一個ifstream
對象file
,并指定要打開的文件名為example.txt
。然后,我們使用std::getline
函數逐行讀取文件內容,并將每行內容輸出到控制臺。最后,我們關閉文件。
請確保文件存在且路徑正確,否則將無法成功打開文件。