C++中通过指针捕获异常

2023-03-07C/C++开发问题
1

本文介绍了C++中通过指针捕获异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我发现有3种方法可以捕获异常,有什么区别?

I found that there are three ways to catch an exception, what are the differences?

1) 按值捕获;

2) 按引用捕获;

3) 通过指针捕捉;

我只知道按值捕获会调用对象的两个副本,按引用捕获会调用一个.那么如何通过指针捕获呢?什么时候用指针捕捉?除了抛出一个对象,我还能像这样抛出一个指向对象的指针吗?

I only know that catch by value will invoke two copies of the object, catch by reference will invoke one. So how about catch by pointer? When to use catch by pointer? In addition to throw an object, can I throw a pointer to an object like this?

class A {}

void f() {

  A *p = new A();
        throw p;


}

推荐答案

推荐的方式是按值抛出,按引用捕获.

您的示例代码抛出一个指针,这是一个坏主意,因为您必须在捕获站点管理内存.

Your example code throws a pointer, which is a bad idea since you would have to manage memory at the catch site.

如果你真的觉得你应该抛出一个指针,使用智能指针,比如 shared_ptr.

If you really feel you should throw a pointer, use a smart pointer such as shared_ptr.

无论如何,Herb Sutter 和 Alexei Alexandrescu 在我转述的他们的 C++ 编码标准一书中很好地解释了这一点.

请参阅 C++ 编码标准:按值抛出,按引用捕获.

这篇关于C++中通过指针捕获异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6