博客
关于我
c++中虚析构函数的使用
阅读量:346 次
发布时间:2019-03-04

本文共 1430 字,大约阅读时间需要 4 分钟。

???????????

?C++???????????????????virtual????????C++?????????????????????????????????????????????

C++??????????????????????????????C++????????????????vtable?????????????????????????????????????????????????????

?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

??????????????????C++?????????????????????????????????????????????????????????????????????????????????????????

?????????

???????????

class Base {public:    Base() {}    ~Base() { std::cout << "??Base??" << std::endl; }};class Derived : public Base {public:    Derived() {}    ~Derived() { std::cout << "??Derived??" << std::endl; }};

?????????Base????????????????Base*????Derived????????Base??????Derived??????????????????????????????????Derived??????????????

????????????????????????????????????????????????????????????????????????????????????????????????????????????????????final?????????

???????????

???????????????????????????

  • ???????????????????????????????????

  • ??????????????????????????????????????????????????????????????????????

  • ?????????????????????????????????????????????????derived????private???????????????????????????

  • ??final????????????????????????????????????????????????????final?????????????????

  • ??????????????????????????????????????????????????

    ??

    ?C++????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

    转载地址:http://anxq.baihongyu.com/

    你可能感兴趣的文章
    php301到https,虚拟主机设置自动301跳转到HTTPS
    查看>>
    php5 apache 配置
    查看>>
    php5 升级 php7 版本遇到的问题处理方法总结
    查看>>
    PHP5.3.3安装Mcrypt扩展
    查看>>
    PHP5.4 + IIS + Win2008 R2 配置
    查看>>
    Redis从入门到精通
    查看>>
    PHP5.6.x编译报错:Don't know how to define struct flock on this system, set --enable-opcache=no
    查看>>
    php5ts.dll 下载_php5ts.dll下载
    查看>>
    php7
    查看>>
    PHP7 新特性
    查看>>
    PHP7+MySQL5.7+Nginx1.9. on Ubuntu 14.0
    查看>>
    php7.1.6 + redis
    查看>>
    php7中使用php_memcache扩展
    查看>>
    PHP7中十个需要避免的坑
    查看>>
    php7和PHP5对比的新特性和性能优化
    查看>>
    PHP7安装pdo_mysql扩展
    查看>>
    PHP7实战开发简单CMS内容管理系统(7) 后台登录架构 用户登录校验
    查看>>
    php7,从phpExcel升级到PhpSpreadsheet
    查看>>
    PHP8.1 + ThinkPHP实战指南:高效构建现代化网站的六大技巧
    查看>>
    PHP8中match新语句的操作方法
    查看>>