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

C++ catch blocks - catch exception by value or reference?(C++ catch 块 - 按值或引用捕获异常?)
本文介绍了C++ catch 块 - 按值或引用捕获异常?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

可能的重复:
在 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.

这篇关于C++ catch 块 - 按值或引用捕获异常?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)