std :: runtime_error调用std :: terminate但挂起

时间:2016-09-22 21:47:45

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

以下代码只挂起而不将控制权返回给shell,只打印以下消息: "在抛出std :: runtime_error"

的实例后终止调用
#include <stdexcept>
int main() { throw std::runtime_error("exception"); return 0; }

为什么不中止进程并将控制权返回给shell?

0 个答案:

没有答案