C++学习笔记--抽象基类

本文探讨了在C++中如何利用抽象基类来整合椭圆和圆的共同特性,避免直接继承关系。当类包含纯虚函数时,该类成为抽象类,不允许实例化。示例展示了抽象基类在计算几何形状面积中的应用。
摘要由CSDN通过智能技术生成

There is another solution: You can abstract from the Ellipse and Circle classes what they have in common and place those feature in an Abstract Base Class.

椭圆和圆有很多相似的地方,但是圆又不能直接从椭圆中继承,比较好的解决方法是把它们共有的部分放到抽象基类中。

When a class declaration contains a pure virtual function, you can't create an object of that class.

当一个类含有纯虚函数时,你不能创建那个类的对象。

#include <iostream>
using namespace std;
// Base class
class Shape
{
public:
    // Pure virtual function providing interface framework.
    virtual int getArea() = 0;
    void setWidth(int w)
    {
        width = w;
    }
    void setHeight(int h)
    {
        height = h;
    }
protected:
    int width;
    int height;
};
// Derived classes
class Rectangle : public Shape
{
public:
    int getArea()
    {
        return (width * height);
    }
};
class Triangle : public Shape
{
public:
    int getArea()
    {
        return (width * height)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值