c++使用接口,通过纯虚函数实现

#include <iostream>
using namespace std;

class Shape
{
protected:
    int width;
    int height;
    string name;

public:
    // pure virtial function for interface
    virtual int getArea() = 0;
    virtual string getName() = 0;
    void setWidth(int w)
    {
        width = w;
    }
    void setHeight(int h)
    {
        height = h;
    }
    void setName(string name_)
    {
        name = name_;
    }
};

class Rectangle : public Shape
{
public:
    int getArea()
    {
        return width * height;
    }

    string getName()
    {
        return "retangle";
    }
};

class Triangle : public Shape
{
public:
    int getArea()
    {
        return (width * height) / 2;
    }

    string getName()
    {
        return "triangle";
    }
};

int main()
{
    Rectangle rectangle;
    Triangle triangle;
    rectangle.setWidth(5);
    rectangle.setHeight(7);
    triangle.setWidth(5);
    triangle.setHeight(7);
    cout << rectangle.getName() << " area is:" << rectangle.getArea() << endl;
    cout << triangle.getName() << " area is:" << triangle.getArea() << endl;
    return 0;
}

 不错的学习内容

原文链接: https://www.cnblogs.com/johnnyzhao/p/17034809.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    c++使用接口,通过纯虚函数实现

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/310452

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月16日 上午11:34
下一篇 2023年2月16日 上午11:36

相关推荐