异常处理在dev c ++中不起作用

时间:2017-04-16 16:26:11

标签: c++ exception-handling dev-c++

我正在尝试运行一个简单的堆栈展开程序,但似乎我的dev c ++不支持异常处理(即try,catch,throw)。 我的代码或dev c ++中是否有错误?

#include<iostream>
#include<exception>

using namespace std;

void funcA();
void funcB();
void funcC() throw(myException);


void funcA() throw(myException){

funcB();
} 

void funcB() throw(myException){

try{
    funcC();    
}
catch(myException me){
    cout<<me.what()<<" \n But Caught in function B"<<endl;
}
}

void funcC throw(myException){

throw myException("Exception generated in Function C.");
}


int main(){

try{

    funcA();

}catch(myException e){

    cout<<e.what()<<"Caught in Main."<<endl;

}
return 0;

}

0 个答案:

没有答案