在C++中,可以使用open()函數來設置ifstream的讀取模式。具體的讀取模式可以通過傳入不同的參數來實現,常用的讀取模式包括:
例如,可以使用以下代碼來設置ifstream的讀取模式為二進制模式和打開文件用于讀取:
#include <iostream>
#include <fstream>
int main() {
std::ifstream file;
file.open("example.txt", std::ifstream::binary | std::ifstream::in);
if (!file.is_open()) {
std::cout << "Failed to open file." << std::endl;
return 1;
}
// 讀取文件內容
file.close();
return 0;
}