Có thể sử dụng ngoại lệ với việc mở tệp để thay thế cho việc sử dụng .is_open()
không?Xử lý ngoại lệ và mở tệp?
Ví dụ:
ifstream input;
try{
input.open("somefile.txt");
}catch(someException){
//Catch exception here
}
Nếu vậy, loại là someException
?
http: //en.cppreference. com/w/cpp/io/basic_ios/exceptions –