underflow_error 类

此类用作引发报告算数下溢的所有异常的基类。

语法

class underflow_error : public runtime_error {
public:
    explicit underflow_error(const string& message);

    explicit underflow_error(const char *message);

};

备注

what() 返回的值是 message.data() 的副本。 有关详细信息,请参阅 whatdata

underflow_error 不是由 Microsoft 实现 C++ 标准库中的任何函数引发的,但它可能由第三方库或用户代码引发。

示例

// underflow_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      throw underflow_error("The number's a bit small, captain!");
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: The number's a bit small, captain!
Type: class std::underflow_error
*/

要求

标头:<stdexcept>

命名空间: std

另请参阅

runtime_error 类
C++ 标准库中的线程安全