Hello World! 可以发现继承类析构函数没有调用,若继承类中有一些资源需要释放,则不能释放,故需要将基类析构函数声明为虚函数。 #include"pch.h"#include<iostream>classCBase {public: CBase() { m_one=0; printf("this is CBase construct\n"); }virtual~CBase() { printf("this is ~CBase deconstru...