在fstream open上不处理异常

时间:2016-08-29 22:28:08

标签: c++ c++11 exception-handling system-error

上下文

我有这个简单的代码:

#include <iostream>
#include <fstream>
#include <system_error>

int main(int argc, char *argv[]) {
  std::ifstream file;
  file.exceptions(std::ios::failbit | std::ios::badbit);

  try {
    file.open("a_file_does_not_exist.txt", std::ios::in);
    file.close();
  } catch(const std::ios_base::failure& err) {
    std::cerr << err.code() << std::endl;
    return -1;
  }

  return 0;
}

刚刚完成,这是编译命令:

 g++ -std=c++11 -g //  ...

编译器的版本是 g ++(GCC)6.1.1

平台: arch-linux 4.7.2-1

问题

您可以想象,该文件不存在,因此方法file.open(...)将引发异常。问题是当我运行代码未处理异常时,会调用std::terminate

奇怪的是输出:

terminate called after throwing an instance of 'std::ios_base::failure'
  what():  basic_ios::clear
Annullato (core dump creato)

正如你所读到的,投掷类是一个std::ios_base::failure,但我的抓住是正确的。

我的问题是:我错过了什么?

1 个答案:

答案 0 :(得分:0)

为什么不使用file.good()file.fail()进行异常处理。它可以完美地用于你想要做的事情。