标签: c++ c++11 exception-handling
以下代码只挂起而不将控制权返回给shell,只打印以下消息: "在抛出std :: runtime_error"
#include <stdexcept> int main() { throw std::runtime_error("exception"); return 0; }
为什么不中止进程并将控制权返回给shell?