中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么定制類型異常

發布時間:2021-11-24 16:40:06 來源:億速云 閱讀:123 作者:iii 欄目:大數據

本篇內容主要講解“C++怎么定制類型異常”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++怎么定制類型異常”吧!

E.14:使用根據目的設計的用戶定制類型異常(非內置類型)

Reason(原因)

A user-defined type is unlikely to clash with other people's exceptions.

用戶定義類型不大可能和其他人的異常發生沖突。

Example(示例)

void my_code()
{
   // ...
   throw Moonphase_error{};
   // ...
}

void your_code()
{
   try {
       // ...
       my_code();
       // ...
   }
   catch(const Bufferpool_exhausted&) {
       // ...
   }
}
Example, don't(反面示例)
void my_code()     // Don't
{
   // ...
   throw 7;       // 7 means "moon in the 4th quarter"
   // ...
}

void your_code()   // Don't
{
   try {
       // ...
       my_code();
       // ...
   }
   catch(int i) {  // i == 7 means "input buffer too small"
       // ...
   }
}
Note(注意)

The standard-library classes derived from exception should be used only as base classes or for exceptions that require only "generic" handling. Like built-in types, their use could clash with other people's use of them.

繼承自exception的標準庫類應該只用于基類或只要求“通常”處理的異常。和內置類型相似,你對它們的使用可能和其他人的使用發生沖突。

Example, don't(反面示例)

void my_code()   // Don't
{
   // ...
   throw runtime_error{"moon in the 4th quarter"};
   // ...
}

void your_code()   // Don't
{
   try {
       // ...
       my_code();
       // ...
   }
   catch(const runtime_error&) {   // runtime_error means "input buffer too small"
       // ...
   }
}

Enforcement(實施建議)

Catch throw and catch of a built-in type. Maybe warn about throw and catch using a standard-library exception type. Obviously, exceptions derived from the std::exception hierarchy are fine.

捕捉針對內置類型的throw和catch。也許可以針對使用標準庫異常類型的throw和catch發出警告。顯然,繼承自std::exception的異常類沒有問題。

到此,相信大家對“C++怎么定制類型異常”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節
推薦閱讀:
  1. C++ 異常學習
  2. c++異常3

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

嘉荫县| 南汇区| 黄石市| 道孚县| 沙坪坝区| 琼结县| 类乌齐县| 宣汉县| 无为县| 出国| 广德县| 大厂| 开鲁县| 翁源县| 酒泉市| 金昌市| 田阳县| 加查县| 当雄县| 汉阴县| 武山县| 博野县| 二连浩特市| 长宁县| 大渡口区| 平舆县| 治县。| 老河口市| 勃利县| 嘉义市| 南康市| 开原市| 临潭县| 凤山县| 通河县| 灵丘县| 年辖:市辖区| 通海县| 仪征市| 彝良县| 昆山市|