亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

宁阳县| 南川市| 龙口市| 谢通门县| 大名县| 康保县| 新疆| 宁都县| 萝北县| 乌鲁木齐县| 蓝山县| 沭阳县| 澳门| 沙湾县| 绵阳市| 天祝| 开远市| 台东县| 高邑县| 库尔勒市| 昌黎县| 固安县| 榆树市| 鸡泽县| 玉门市| 安仁县| 嵊泗县| 高台县| 龙门县| 阿鲁科尔沁旗| 武隆县| 闽清县| 乡城县| 丰城市| 临沧市| 太谷县| 石门县| 富平县| 逊克县| 菏泽市| 岫岩|