gpt4 book ai didi

c++ - 在 C++ 中定义自己的异常类

转载 作者:行者123 更新时间:2023-11-30 02:45:50 27 4
gpt4 key购买 nike

我试图弄清楚如何为允许添加错误特定文本字符串的 C++ 异常实现我自己的基类。我认为 std::c++ 异常不可能更改错误文本,即使在 C++11 中也不行:http://www.cplusplus.com/reference/exception/exception/ .我还想从我的异常基类派生更具体的异常。我阅读了很多文章,但我仍然不确定我的以下实现是否涵盖了所有重要方面。

class Exception : public std::exception {      
public:
Exception(const char* message) : m(message) {

}

virtual ~Exception() throw() {

}

virtual const char* what() const throw() {
return m.c_str();
}

protected:
std::string m;

private:
Exception();
};

这个实现好吗?

最佳答案

如果您从 runtime_error 派生(并且您的编译器支持继承构造函数),您可以将您的类压缩为

struct Exception : public std::runtime_error
{
using runtime_error::runtime_error;
};

throw():自 C++11 起,异常规范已弃用,请改用 noexcept

关于c++ - 在 C++ 中定义自己的异常类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24136518/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com