উত্তর:
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.cppreferences.com/w/cpp/error/exception
অনুশীলনে, বেশিরভাগ ব্যতিক্রমগুলি হ'ল logic_error
এবং থেকে প্রাপ্ত কাস্টম ব্যতিক্রম runtime_error
। এগুলি অবহেলিত নয়, তবে অনেকগুলি ব্যতিক্রমই ডোমেন নির্দিষ্ট specific
মনে রাখবেন যে একটি ব্যতিক্রম কী ভুল হয়েছে তা প্রতিফলিত করা উচিত এবং কে এটিকে ছুঁড়েছিল তা নয়। (কোনও "মাইপ্রগ্রাম এক্সেক্সেশন" গুলি)
bad_function_call
যখন আপনার ডিফল্ট-নির্মান std :: ফাংশন অবজেক্ট থাকে তখন নিক্ষেপ করা হয় এবং আপনি যে ফাংশনটিকে আবৃত করেন তাকে কল করার চেষ্টা করেন। যেহেতু কোনও মোড়ানো ফাংশন নেই, কল করার কিছুই নেই।
bad_function_call
যখন আপনি অনুরোধ করার চেষ্টা করেন std::function
না যে প্রস্তুত নয় (ওরফে, ডিফল্ট নির্মিত বা নাল্প্টারের মাধ্যমে স্পষ্টভাবে সাফ) thrown future_error
আপনি যখন promise
এবং এর জন্য ফাংশনগুলির অনেক পূর্বশর্তগুলির একটি লঙ্ঘন করেন তখন ব্যবহৃত হয় future
। এবং domain_error
এটি (তত্ত্বের ক্ষেত্রে) ক্ষেত্রে কোনও ফাংশনের ইনপুট সেই ফাংশনের জন্য বৈধ সীমার বাইরে (যেমন এর জন্য নেতিবাচক সংখ্যা std::sqrt
)।
future_error
যখন অনুরোধ করা অপারেশনটি অবৈধ হয় বা অবৈধটিকে অবৈধ অবস্থায় ফেলে দেয় তখন ফিউচারগুলিতে বিভিন্ন অপারেশন দ্বারা নিক্ষেপ করা হয়। এটি সি ++ 11 এ নতুন স্টাফ এবং আমি কোনও মন্তব্যে টিউটোরিয়ালটি ফিট করতে পারি না।
std::exception
এবং সেগুলি সি ++ 11 কিনা (বিশেষত, std::ios_base::failure
এখান থেকে সরানো std::exception
হয়েছে std::system_error
) তা নোট করে । ব্যবহার এবং শিরোনাম এক লিঙ্ক দূরে।
এই সাইটটি দেখুন
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++
, না c++11
, এবং তারা সবই তো একই রকম বসবাস<stdexcept>
<stdexcept>
যেমন দেখানো ideone.com/uqM6h
std::logic_error
না std::logic_failure
। সেই চিত্রটি ভুল!
bad_function_call, domain_error, and future_error
এমএসডিএন-তে এগুলি সবচেয়ে খারাপভাবে বর্ণিত এবং ব্যাখ্যা করা হয়েছে :(