C++的继承

创建一个类时,不需要重新编写新的数据成员和成员函数,只需指定新建的类继承一个已经存在的类。这个已经存在的类叫做基类,新建的类叫做派生类

访问控制和继承

派生类可以访问基类中所有的非私有成员。有如下表所示:

访问publicprotectedprivate
同一个类yesyesyes
派生类yesyesno
外部的类yesnono

一个派生类继承了基类所有的方法,但是以下的除外:
- 基类的构造函数、析构函数和拷贝构造函数。
- 基类的重载运算符。
- 基类的友元函数。

继承类型

有public、protected、private三种继承类型。
公有继承(public):基类的公有成员也是派生类的公有成员,基类的保护成员也是派生类的保护成员,基类的私有成员不能直接被派生类访问,但是可以通过调用基类中的方法来访问。
私有继承(private):基类的公有成员和保护成员成为派生类的私有成员。
保护继承(protected):基类的公有成员和保护成员成为派生类的保护成员。

#include <iostream>

using namespace std;

// 基类 Shape
class Shape 
{
   public:
      void setWidth(int w)
      {
         width = w;
      }
      void setHeight(int h)
      {
         height = h;
      }
   protected:
      int width;
      int height;
};

// 基类 PaintCost
class PaintCost 
{
   public:
      int getCost(int area)
      {
         return area * 10;
      }
};

// 派生类
class Rectangle: public Shape, public PaintCost
{
   public:
      int getArea()
      { 
         return (width * height); 
      }
};

int main(void)
{
   Rectangle Rect;
   int area;

   Rect.setWidth(4);
   Rect.setHeight(9);

   area = Rect.getArea();

   // 输出对象的面积
   cout << "Total area: %d" << Rect.getArea() << endl;

   // 输出总花费
   cout << "Total paint cost: %d" << Rect.getCost(area) << endl;

   return 0;
}

输出结果是:
Total area: 36
Total paint cost: 360

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值