在C++中,可以使用fstream庫來打開一個文件進行讀取操作。下面是一個示例代碼:
#include <iostream>
#include <fstream>
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類來打開名為example.txt的文件,并逐行讀取文件內容并輸出到控制臺。最后我們使用close()方法關閉文件。