码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Exception机制

时间:2018-01-02 19:53:22      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:end   rmi   进入   图片   alt   instance   win   std   try catch   

C++异常机制的执行顺序。

在构造函数内抛出异常

技术分享图片
/*
 * ExceptClass.h
 *
 *  Created on: 2018年1月2日
 *      Author: jacket
 */

#ifndef EXCEPTCLASS_H_
#define EXCEPTCLASS_H_

#include <iostream>

using std::cout;
using std::endl;

class ExceptClass {
public:
    ExceptClass(){
        cout<<"ExcepClass"<<endl;
        throw int(1);
    }
    void start(){
    }

    virtual ~ExceptClass() {
        cout<<"~ExcepClass"<<endl;
    }
};

#endif /* EXCEPTCLASS_H_ */
View Code

 

如果外部没有try catch,输出

ExcepClass
terminate called after throwing an instance of int

如果外部try catch

ExcepClass
Catch

 

 

在start()内抛出异常

技术分享图片
/*
 * ExceptClass.h
 *
 *  Created on: 2018年1月2日
 *      Author: jacket
 */

#ifndef EXCEPTCLASS_H_
#define EXCEPTCLASS_H_

#include <iostream>

using std::cout;
using std::endl;

class ExceptClass {
public:
    ExceptClass(){
        cout<<"ExcepClass"<<endl;
    }
    void start(){
        throw int(1);
    }

    virtual ~ExceptClass() {
        cout<<"~ExcepClass"<<endl;
    }
};

#endif /* EXCEPTCLASS_H_ */
View Code

 

如果外部没有try catch

 

ExcepClass

terminate called after throwing an instance of int

 

如果外部try catch

ExcepClass
~ExcepClass
Catch

 

 所以,如果在构造函数内抛出异常,析构函数将不被调用。如果在其他函数内抛出异常,析构函数会被调用。

而且如果外部没有try catch不会调用析构函数,说明C++抛出异常后是先回退(好像是栈有关的回退),检测到异常会被捕捉才进入析构函数。

刚试了下有try catch但捕捉类型改为float,也不会进入析构函数。

 

C++ Exception机制

标签:end   rmi   进入   图片   alt   instance   win   std   try catch   

原文地址:https://www.cnblogs.com/Jacket-K/p/8178603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!