本文介绍了C ++:如果抛出异常,超出范围的对象是否被销毁?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通常情况下,它会在范围结束时被破坏。如果异常被抛出,我可以看到问题。

解决方案

是的。



C ++标准n3337



15异常处理



§ 15.2构造函数和析构函数

示例:

  SomeClass c; //在try {}之前声明,所以它是
//在catch中仍然有效{}块
try {
SomeClass t;
throw;
} catch(...){
// t destroy
// c valid
}


Normally it would be destructed upon the scope ending.. I could see issues occurring if exceptions were thrown though.

解决方案

Yes.

C++ Standard n3337

15 Exception handling

§ 15.2 Constructors and destructors

example:

SomeClass c;              // declared before try{} so it is
                          // still valid in catch{} block
try {
    SomeClass t;
    throw;
} catch( ...) {
    // t destroyed
    // c valid
}

这篇关于C ++:如果抛出异常,超出范围的对象是否被销毁?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 15:01