码迷,mamicode.com
首页 > 编程语言 > 详细

C++抽象类实践

时间:2019-07-19 09:28:59      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:有一个   函数   ace   mamicode   include   image   div   pac   虚析构函数   

实践如下:

#include <iostream>
using namespace std;

class Service {

public:
    // 有一个虚函数即为抽象类
    int id;
    // 不定义虚析构函数 会报右侧异常:@suppress("Class has a virtual method and non-virtual destructor")
    virtual ~Service(){}
    virtual double calc()=0;
    int aa(){
        return 11;
    }
};

class AService: public Service {
public:
    //virtual ~AService(){}
    double calc() {
        // 操作抽象类中定义的字段
        id = 100;
        cout << "id:" << id << endl;

        cout << "AService 100~~~" << endl;
        return 100;
    }
};
class BService: public Service {
public:
    //virtual ~BService(){}
    double calc() {
        cout << "BService 200~~~" << endl;
        return 200;
    }
};

int main() {

    cout << "抽象类 实践:" << endl;

    Service *s = new AService();
    s->calc();

    cout << "\n抽象类 end." << endl;

    return 0;
}

结果:

技术图片

 

C++抽象类实践

标签:有一个   函数   ace   mamicode   include   image   div   pac   虚析构函数   

原文地址:https://www.cnblogs.com/do-your-best/p/11211179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!