介绍 Cpp 析构方法,增加虚析构函数的说明。

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-06-26 15:10:12 +08:00
parent fb2f542048
commit e0e7d0703b
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Cpp 析构方法
基类带有虚函数的,最好提供一个虚析构函数,并且子类重载这个虚构函数,否则将基类指针指向子类后,再去 delete 这个指针将导致内存泄漏。