我们在try catch和std :: runtime_error中遇到了一个有趣的问题。 有人可以向我解释为什么这会返回“未知错误”作为输出? 非常感谢你帮助我!
#include "stdafx.h"
#include <iostream>
#include <stdexcept>
int magicCode()
{
throw std::runtime_error("FunnyError");
}
int funnyCatch()
{
try{
magicCode();
} catch (std::exception& e) {
throw e;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
try
{
funnyCatch();
}
catch (std::exception& e)
{
std::cout << e.what();
}
return 0;
}
答案 0 :(得分:19)
问题出在这条线上。因为带有表达式的throw
使用该表达式的静态类型来确定抛出的异常,所以这会对构造新std::exception
对象的异常对象进行切片,只复制std::runtime_error
的基础对象部分e
是对。
throw e;
要重新抛出捕获的异常,应始终使用不带表达式的throw。
throw;
答案 1 :(得分:0)