คลาสข้อยกเว้นใดบ้างที่อยู่ในไลบรารี 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_errorใน msdn พวกเขาเป็นตัวอย่างและอธิบายที่แย่ที่สุด :(
Mr. Anubis

bad_function_callจะถูกโยนทิ้งเมื่อคุณมีอ็อบเจ็กต์ std :: function ที่สร้างโดยดีฟอลต์และคุณพยายามเรียกใช้ฟังก์ชันที่มันตัด เนื่องจากไม่มีฟังก์ชั่นห่อจึงไม่มีอะไรให้โทร
Pete Becker

1
bad_function_callจะถูกโยนทิ้งเมื่อคุณพยายามเรียกใช้std::functionสิ่งที่ไม่พร้อม (aka, ค่าเริ่มต้นที่สร้างขึ้นหรือล้างอย่างชัดเจนผ่าน nullptr) future_errorถูกใช้เมื่อคุณละเมิดเงื่อนไขเบื้องต้นอย่างใดอย่างหนึ่งของฟังก์ชันสำหรับpromiseและfuture. และdomain_errorเป็น (ในทางทฤษฎี) สำหรับกรณีที่อินพุตไปยังฟังก์ชันอยู่นอกช่วงที่ถูกต้องสำหรับฟังก์ชันนั้น (เช่นจำนวนลบสำหรับstd::sqrt)
Dave S

future_errorถูกทิ้งโดยการดำเนินการต่างๆบนฟิวเจอร์สเมื่อการดำเนินการที่ร้องขอไม่ถูกต้องหรือทำให้วัตถุอยู่ในสถานะที่ไม่ถูกต้อง นี่เป็นสิ่งใหม่ใน C ++ 11 และฉันไม่สามารถใส่บทช่วยสอนในความคิดเห็นได้
Pete Becker

3
cppreference แสดงรายการคลาสที่ได้รับของstd::exceptionและบันทึกว่าเป็น C ++ 11 หรือไม่ (โดยเฉพาะstd::ios_base::failureย้ายจากstd::exceptionไปยังstd::system_error) การใช้งานและส่วนหัวเป็นลิงค์เดียว
ecatmur

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 นอกจากนี้ข้อผิดพลาดเหล่านี้ไม่ได้ทั้งหมด<stdexcept>ตามที่แสดงโดยideone.com/uqM6h
Mooing Duck

1
@MooingDuck หากไม่ได้ถามเป็นพิเศษคำตอบสำหรับ C ++ 03 จะใช้ได้เหมือนกับ C ++ 11 และในทางกลับกัน เป็นความรับผิดชอบของคุณในการให้ข้อมูลที่จำเป็นทั้งหมด คุณไม่ควรคาดหวังว่าจะได้รับคำตอบที่มีคุณภาพจากคำถามที่ไม่ดี ระยะเวลา
Phil1970

std::logic_errorไม่ใช่std::logic_failure. แผนภาพนั้นไม่ถูกต้อง!
Galaxy
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.