Chinaunix

标题: linux上面std::thread抛出的异常,异常信息没有看懂,请教! [打印本页]

作者: cdsfiui    时间: 2017-08-11 21:23
标题: linux上面std::thread抛出的异常,异常信息没有看懂,请教!
在RHEL 7上面(G++ 4.8.5)编译运行下面的程序:
  1. #include <iostream>
  2. #include <string>
  3. #include <thread>
  4. using namespace std;
  5. struct N{
  6.     string s;
  7.     N(){}
  8.     ~N(){cout<<"N dtor"<<endl;}
  9. };

  10. void f(){
  11.     N n;
  12.     throw 0;
  13. }
  14. int main(){
  15.     try{
  16.         thread a(f), b(f);
  17.         a.join();
  18.         b.join();
  19.     }catch(exception& e){
  20.         cout<<e.what()<<endl;
  21.     }
  22.     return 0;
  23. }
复制代码


输出打印:

  1. $g++ 2.cpp -std=c++11 -lpthread && ./a.out
  2. N dtorN dtor

  3. terminate called after throwing an instance of 'int'
  4. terminate called recursively
  5. Aborted

复制代码


问题:
为什么try/catch没有抓住throw出来的int异常,看起来thread函数f内部已经做了stack unwind,因为N的析构函数调用了。但是try/catch似乎没有用,线程terminated。

这是为何? 谢谢。

作者: drangon    时间: 2017-08-12 14:35
try/catch 只能抓本线程(main的主线程)的异常,你在其他线程(新开的线程)抛的异常,当然不会被抓到了,然后就缺省abort了,然后abort就重入了
作者: cokeboL    时间: 2017-08-12 17:51
通常情况下,你跳槽到另一家公司了,本公司待遇就不会再享受了。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2