標準C ++ライブラリに含まれる例外クラス


102

標準C ++ライブラリに含まれている例外クラスとは何ですか?それらは何に使用する必要がありますか?私はいくつかの新しいC ++ 11例外があることを知っていますが、それらが何であるか、またはどこにあるのかわかりません。

回答:


124
std::exception <exception> interface (debatable if you should catch this)
    std::bad_alloc <new> failure to allocate storage
        std::bad_array_new_length <new> invalid array length
    std::bad_cast <typeinfo> execution of an invalid dynamic-cast
    std::bad_exception <exception> signifies an incorrect exception was thrown
    std::bad_function_call <functional> thrown by "null" std::function
    std::bad_typeid <typeinfo> using typeinfo on a null pointer
    std::bad_weak_ptr <memory> constructing a shared_ptr from a bad weak_ptr
    std::logic_error <stdexcept> errors detectable before the program executes
        std::domain_error <stdexcept> parameter outside the valid range
        std::future_error <future> violated a std::promise/std::future condition
        std::invalid_argument <stdexcept> invalid argument
        std::length_error <stdexcept> length exceeds its maximum allowable size
        std::out_of_range <stdexcept> argument value not in its expected range
    std::runtime_error <stdexcept> errors detectable when the program executes
        std::overflow_error <stdexcept> arithmetic overflow error.
        std::underflow_error <stdexcept> arithmetic underflow error.
        std::range_error <stdexcept> range errors in internal computations
        std::regex_error <regex> errors from the regular expression library.
        std::system_error <system_error> from operating system or other C API
            std::ios_base::failure <ios> Input or output error

ソース:http : //en.cppreference.com/w/cpp/error/exception
実際には、ほとんどの例外はlogic_errorおよびから派生したカスタム例外runtime_errorです。これらが無視されているわけではありませんが、多くの例外はドメイン固有です。

例外は、誰がそれを投げたのかではなく、何が悪かったのかを反映すべきであることに注意してください。(「MyProgramException」はありません)


bad_function_call, domain_error, and future_errormsdnで彼らは最悪の例と説明されています:(
Mr.Anubis '13

bad_function_callデフォルトで構築されたstd :: functionオブジェクトがあり、それがラップする関数を呼び出そうとするとスローされます。ラップされた関数がないため、呼び出すものはありません。
ピートベッカー

1
bad_function_callstd::function準備が整っていない(別名、デフォルトで作成された、またはnullptrを介して明示的にクリアされた)起動しようとするとスローされます。 およびのfuture_error関数の多くの前提条件の1つに違反する場合に使用されます。そして(理論的には)関数への入力がその関数の有効範囲外の場合(の負の数など)です。promisefuturedomain_errorstd::sqrt
Dave S

future_error要求された操作が無効であるか、オブジェクトを無効な状態にするときに、futureのさまざまな操作によってスローされます。これはC ++ 11の新機能で、チュートリアルをコメントに含めることはできません。
ピートベッカー

3
cppreferenceは、の派生クラスをリストし、std::exceptionそれらがC ++ 11であるかどうか(特に、std::ios_base::failureからstd::exceptionに移動std::system_error)を示します。使用法とヘッダーは1つのリンクから離れています。
ecatmur 2012

50

このサイトを見る

ここに画像の説明を入力してください

Exception               Description
===================================
std::exception          An exception and parent class of all the standard C++ exceptions.
std::bad_alloc          This can be thrown by new.
std::bad_cast           This can be thrown by dynamic_cast.
std::bad_exception      This is useful device to handle unexpected exceptions in a C++ program
std::bad_typeid         This can be thrown by typeid.
std::logic_error        An exception that theoretically can be detected by reading the code.
std::domain_error       This is an exception thrown when a mathematically invalid domain is used
std::invalid_argument   This is thrown due to invalid arguments.
std::length_error       This is thrown when a too big std::string is created
std::out_of_range       This can be thrown by the at method from for example a std::vector and std::bitset<>::operator[]().
std::runtime_error      An exception that theoretically can not be detected by reading the code.
std::overflow_error     This is thrown if a mathematical overflow occurs.
std::range_error        This is occured when you try to store a value which is out of range.
std::underflow_error    This is thrown if a mathematical underflow occurs.

これは良いことですが、C ++ 11の例外が欠落しており、どの例外がどのヘッダーにあるかは表示されません。
Mooing Duck

3
@MooingDuckあなたの質問にはc++、ではなくタグが付けられました。c++11それらはすべて同じ場所にあります<stdexcept>
TemplateRex

6
C ++は最新バージョンが何であっても意味しますが、C ++ 11とC ++ 03はそれらの特定のバージョンに関する質問です。私の質問は、特定のバージョンについてではなく、C ++に関する最新情報です。いずれにせよ、質問を編集してC ++ 11について言及します。また、ideone.com / uqM6h<stdexcept>
Mooing Duckが

1
@MooingDuck特に質問されていない場合、C ++ 03の回答はC ++ 11の回答と同じくらい有効です。必要な情報をすべて提供するのはあなたの責任でした。あなたは貧しい質問から質の高い答えを得ることを期待してはいけません。限目。
Phil1970

std::logic_error、ではありませんstd::logic_failure。その図は間違っています!
ギャラクシー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.