我尝试使用异常打印类型名称,但我的程序似乎甚至没有捕获异常,而是似乎调用默认终止函数。我错过了什么?
#include <cstdio>
#include <exception>
#include <typeinfo>
namespace Error
{
template<typename T>
class Blah : std::exception
{
virtual const char* what() const throw()
{
return typeid(T).name();
}
};
}
void blah() {
throw Error::Blah<int*********>();
}
int main()
{
try
{
blah();
}
catch (std::exception& e)
{
std::puts(e.what());
}
}
答案 0 :(得分:10)
问题在于:
template<typename T>
class Blah : std::exception
// ^^^^^^^^^^^^^^^
您继承私有(默认情况下class
继承为private
且您不添加说明符),因此std::exception
不是一个可访问的基地你必须公开继承。