C++ catch 块 - 通过值或引用捕获异常?

2022-01-08 00:00:00 exception-handling c++

可能的重复:
C++中通过指针捕获异常

我总是按值捕获异常.例如

I always catch exceptions by value. e.g

try{
...
}
catch(CustomException e){
...
}

但我遇到了一些代码,而是用 catch(CustomException &e) 代替.这是 a) 好的 b) 错误的 c) 灰色区域吗?

But I came across some code that instead had catch(CustomException &e) instead. Is this a)fine b)wrong c)a grey area?

推荐答案

C++ 中异常的标准做法是...

The standard practice for exceptions in C++ is ...

按值抛出,按引用捕获

在继承层次结构面前,按值捕获是有问题的.假设您的示例有另一种类型 MyException 继承自 CustomException 并覆盖错误代码等项目.如果抛出 MyException 类型,您的 catch 块将导致它转换为 CustomException 实例,这将导致错误代码发生更改.

Catching by value is problematic in the face of inheritance hierarchies. Suppose for your example that there is another type MyException which inherits from CustomException and overrides items like an error code. If a MyException type was thrown your catch block would cause it to be converted to a CustomException instance which would cause the error code to change.

相关文章