您好,登錄后才能下訂單哦!
本篇內容主要講解“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&) {
// ...
}
}
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"
// ...
}
}
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++怎么定制類型異常”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。