考虑下面的代码:
#include <iostream>
#include <stdexcept>
class E{
public:
E(int n):m_n(n)
{
if (0>n)
{
throw std::logic_error("5");
}
}
~E(){cout << m_n << "#" <<endl;}
public :
int m_n;
};
int main()
{
try{
E a(5);
try{
E c(7);
E b(-8);
E d(9);
}
catch(const std::exception &e)
{
cout <<2 <<"&&&"<<e.what()<<endl;
throw e;
}
}
catch(const std::exception &e)
{
cout <<3 << "^^^^^ "<<e.what() << endl;
throw e;
}
return 0;
}
我得到的输出是:
7#
2&&&5
5#
3^^^^^ St9exception
std::exception: St9exception
Aborted.
有人可以解释为什么这样的输出吗?我希望显示第一个 5#。