117.info
人生若只如初见

C++标准异常类的错误信息

C++ 标准异常类位于 头文件中,它们是继承自 std::exception 类的基类。这些异常类提供了关于错误的一般信息。以下是 C++ 标准异常类的继承结构:

class std::exception {
public:
    std::exception() noexcept;
    virtual ~std::exception() noexcept;
    const char* what() const noexcept;
};

C++ 标准异常类包括以下几种:

  1. std::runtime_error:表示运行时错误,通常是由程序逻辑错误引起的。它继承自 std::exception 类。
class std::runtime_error : public std::exception {
public:
    explicit runtime_error(const std::string& message) : message_(message) {}
    const char* what() const noexcept override { return message_.c_str(); }
private:
    std::string message_;
};
  1. std::logic_error:表示逻辑错误,通常是由程序中的错误条件引起的。它也继承自 std::exception 类。
class std::logic_error : public std::exception {
public:
    explicit logic_error(const std::string& message) : message_(message) {}
    const char* what() const noexcept override { return message_.c_str(); }
private:
    std::string message_;
};
  1. std::out_of_range:表示访问数组或其他容器时越界。它继承自 std::runtime_error 类。
class std::out_of_range : public std::runtime_error {
public:
    explicit out_of_range(const std::string& message) : std::runtime_error(message) {}
};
  1. std::bad_alloc:表示内存分配失败,通常是由于系统资源不足引起的。它继承自 std::runtime_error 类。
class std::bad_alloc : public std::runtime_error {
public:
    const char* what() const noexcept override { return "Memory allocation failed"; }
};
  1. std::domain_error:表示传递给函数的参数超出了其允许的范围。它继承自 std::runtime_error 类。
class std::domain_error : public std::runtime_error {
public:
    explicit domain_error(const std::string& message) : std::runtime_error(message) {}
};
  1. std::invalid_argument:表示传递给函数的参数无效。它继承自 std::runtime_error 类。
class std::invalid_argument : public std::runtime_error {
public:
    explicit invalid_argument(const std::string& message) : std::runtime_error(message) {}
};
  1. std::length_error:表示传递给函数的参数过长。它继承自 std::runtime_error 类。
class std::length_error : public std::runtime_error {
public:
    explicit length_error(const std::string& message) : std::runtime_error(message) {}
};
  1. std::out_of_range:表示访问数组或其他容器时越界。它继承自 std::runtime_error 类。
class std::out_of_range : public std::runtime_error {
public:
    explicit out_of_range(const std::string& message) : std::runtime_error(message) {}
};

这些异常类都提供了一个 what() 成员函数,用于返回描述错误的字符串。当程序抛出异常时,可以通过调用 what() 函数来获取错误信息。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fec80AzsBBgBf.html

推荐文章

  • c++ stat 能处理大数据吗

    stat 是 C++ 标准库中的一个函数,用于获取文件的状态信息。它可以处理大多数常规文件的大小,但是对于非常大的文件,stat 函数的性能可能会受到影响。
    在大...

  • c++ stat 怎样实现精准控制

    在C++中,stat函数用于获取文件或目录的元信息
    #include #include #include #include int main() { struct stat file_stats; int result = stat("example.t...

  • c++ stat 为何如此高效

    C++ 的 stat 函数之所以高效,主要是因为它是一个操作系统级别的系统调用,直接与底层操作系统交互。这意味着它可以快速地获取文件的状态信息,而不需要经过 C++...

  • c++ stat 应用领域有哪些

    stat 是 C++ 标准库中的一个类,它位于 头文件中。stat 类主要用于获取文件或目录的元信息,如文件大小、创建时间、修改时间等。以下是一些 stat 类的常见应用领...

  • C++标准异常类的创建方法

    在C++中,标准异常类是从std::exception类派生出来的。要创建自定义异常类,你需要遵循以下步骤: 包含头文件:首先,需要包含头文件,以便使用std::exception类...

  • C++标准异常类的使用场景

    C++标准异常类主要包括std::exception及其派生类,它们用于在程序中处理异常情况。以下是一些常见的使用场景: 错误处理:当程序遇到不可恢复的错误时,可以抛出...

  • C++标准异常类的继承关系

    C++ 标准异常类位于 头文件中,它们继承自 std::exception 类。std::exception 是一个基类,它为所有标准异常提供了一个公共的接口。以下是 C++ 标准异常类的继承...

  • C++标准异常类有哪些种类

    C++ 标准异常类主要包含以下几种: std::exception:这是所有标准异常类的基类,它提供了一个基本的接口,允许程序员捕获和处理所有标准异常。std::exception 类...