1. 程式人生 > >C++中的異常

C++中的異常

類型 clu pre == 原因 gpo col post urn

1.異常可以跨越函數 ;2.異常中的catch()嚴格進行類型匹配;3.異常出現後,可以不處理,再次拋出異常

 1 #include<iostream>
 2 using namespace std;
 3 
 4 
 5 double myderive(int x,int y)
 6 {
 7     try
 8     {
 9        if(y==0)
10        {
11            throw x;
12        }
13 
14        return x/y;
15     }
16 
17     
18     catch(int x)
19 { 20 cout<<x<<"被0除"<<endl; 21 } 22 23 24 catch(...)//處理不知道什麽原因的異常 25 { 26 cout<<"程序出現未知的異常"<<endl; 27 throw x; 28 } 29 30 } 31 32 33 int main() 34 { 35 myderive(10,0); 36 37 return 0; 38 }

C++中的異常