Chinaunix
标题:
linux上面std::thread抛出的异常,异常信息没有看懂,请教!
[打印本页]
作者:
cdsfiui
时间:
2017-08-11 21:23
标题:
linux上面std::thread抛出的异常,异常信息没有看懂,请教!
在RHEL 7上面(G++ 4.8.5)编译运行下面的程序:
#include <iostream>
#include <string>
#include <thread>
using namespace std;
struct N{
string s;
N(){}
~N(){cout<<"N dtor"<<endl;}
};
void f(){
N n;
throw 0;
}
int main(){
try{
thread a(f), b(f);
a.join();
b.join();
}catch(exception& e){
cout<<e.what()<<endl;
}
return 0;
}
复制代码
输出打印:
$g++ 2.cpp -std=c++11 -lpthread && ./a.out
N dtorN dtor
terminate called after throwing an instance of 'int'
terminate called recursively
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