In C++ Inheritance, Derived class destructor not called when pointer object to base class is pointed to derived class(在 C++ 继承中,当指向基类的指针对象指向派生类时,不调用派生类析构函数)
问题描述
我是新手,我知道这是一个非常基本的概念,也可能是重复的.一旦调用了构造函数,就必须调用其相应的析构函数,这不是真的吗?[代码在 Dev C++ 上运行]
I am a newbie and I know this is a very basic concept and might be a duplicate too. Is it not true that once a constructor is called its corresponding destructor has to be called? [code run on Dev C++]
class Base
{
public:
Base() { cout<<"Base Constructor
";}
int b;
~Base() {cout << "Base Destructor
"; }
};
class Derived:public Base
{
public:
Derived() { cout<<"Derived Constructor
";}
int a;
~Derived() { cout<< "Derived Destructor
"; }
};
int main () {
Base* b = new Derived;
//Derived *b = new Derived;
delete b;
getch();
return 0;
}
给出输出
Base Constructor
Derived Constructor
Base Destructor
推荐答案
您的代码有未定义的行为.基类的析构函数必须是 virtual
以便以下具有定义的行为.
Your code has undefined behavior. The base class's destructor must be virtual
for the following to have defined behavior.
Base* b = new Derived;
delete b;
来自 C++ 标准:
5.3.5 删除
3 在第一种选择中(删除对象),如果静态类型的操作数与其动态类型不同,静态类型应为操作数动态类型的基类,静态类型应具有虚析构函数或行为未定义.
3 In the first alternative (delete object), if the static type of the operand is different from its dynamic type, the static type shall be a base class of the operand’s dynamic type and the static type shall have a virtual destructor or the behavior is undefined.
所以在你的情况下,静态类型是 Base
,动态类型是 Derived
.所以 Base
的析构函数应该是:
So in your case, the static type is Base
, and the dynamic type is Derived
. So the Base
's destructor should be:
virtual ~Base() {cout << "Base Destructor
"; }
这篇关于在 C++ 继承中,当指向基类的指针对象指向派生类时,不调用派生类析构函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 继承中,当指向基类的指针对象指向派生类


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09