gpt4 book ai didi

C++ 异常和来自 std::exception 的继承

转载 作者:IT老高 更新时间:2023-10-28 23:10:00 26 4
gpt4 key购买 nike

鉴于此示例代码:

#include <iostream>
#include <stdexcept>

class my_exception_t : std::exception
{
public:
explicit my_exception_t()
{ }

virtual const char* what() const throw()
{ return "Hello, world!"; }
};

int main()
{
try
{ throw my_exception_t(); }
catch (const std::exception& error)
{ std::cerr << "Exception: " << error.what() << std::endl; }
catch (...)
{ std::cerr << "Exception: unknown" << std::endl; }

return 0;
}

我得到以下输出:

Exception: unknown

然而,简单地从 std::exception public 继承 my_exception_t,我得到以下输出:

Exception: Hello, world!

有人可以向我解释为什么在这种情况下继承类型很重要吗?标准中引用的奖励积分。

最佳答案

当您私有(private)继承时,您不能转换为或以其他方式访问该类之外的该基类。既然你从标准中要求了一些东西:

§11.2/4:
A base class is said to be accessible if an invented public member of the base class is accessible. If a base class is accessible, one can implicitly convert a pointer to a derived class to a pointer to that base class (4.10, 4.11).

简单地说,对于类之外的任何东西,就像你从未从 std::exception 继承一样,因为它是私有(private)的。因此,它不会被 std::exception& 子句捕获,因为不存在转换。

关于C++ 异常和来自 std::exception 的继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2569782/

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