c++++ 中定义异常类:需从 std::exception 派生新类,重写 what 虚函数提供异常消息;如例所示,myexception 类重写 what 返回异常消息。实战案例中,divide 函数抛出 std::runtime_error 异常,main 函数捕获并打印异常消息。
C++ 函数异常处理中的异常类定义
在 C++ 中,异常类是用来处理函数异常情况的。要定义一个异常类,需要从 std::exception
类派生一个新类,并重写 what
虚函数以提供异常消息。
以下是一个定义异常类的示例:
#include <exception> class MyException : public std::exception { public: MyException(const char* message) : std::exception(message) {} MyException(const std::string& message) : std::exception(message.c_str()) {} const char* what() const noexcept override { return message_.c_str(); } private: std::string message_; };