1. 程式人生 > >Part12 異常處理 12.3標準庫程序異常處理

Part12 異常處理 12.3標準庫程序異常處理

stream ble runt angle 避免 using eas ron 參數

標準異常類的繼承關系

技術分享圖片

C++標準庫各種異常類所代表的異常

技術分享圖片

標準異常類的基礎
  exception:標準程序庫異常類的公共基類
  logic_error表示可以在程序中被預先檢測到的異常
    如果小心地編寫程序,這類異常能夠避免
  runtime_error表示難以被預先檢測的異常

//例12-3 三角形面積計算
//編寫一個計算三角形面積的函數,函數的參數為三角形三邊邊長a、b、c,可以用Heron公式計算:
#include<iostream>
#include<cmath>
#include<stdexcept>
using
namespace std; double area(double a, double b, double c) throw(invalid_argument){ if(a <= 0 || b <= 0 || c <= 0) throw invalid_argument("the side length should be positive"); if(a + b <= c || b + c <= a || c + a <= b) throw invalid_argument("the side length should fit the triangle inequation
"); double s = (a + b + c) / 2; return sqrt(s * (s - a) * (s - b) * (s - c)); } int main(){ double a, b, c; cout << "Please input the side lengths of a triangle: "; cin >> a >> b >> c; try{ double s = area(a,b,c); cout << "Area: " << s << endl; }
catch(exception &e){ cout << "Error: " << e.what() << endl; } return 0; }

Part12 異常處理 12.3標準庫程序異常處理