C++ 继承


继承

在 C++ 中,可以将属性和方法从一个类继承到另一个类。我们将 "inheritance concept" 分为两类:

  • 派生类(child) - 从另一个类继承的类
  • 基类(parent) - 继承自的类

要从类继承,请使用:象征。

在下面的示例中,Car类(子类)继承了该类的属性和方法Vehicle类(父级):

示例

// Base class
class Vehicle {
  public:
    string brand = "Ford";
    void honk() {
      cout << "Tuut, tuut! \n" ;
    }
};

// Derived class
class Car: public Vehicle {
  public:
    string model = "Mustang";
};

int main() {
  Car myCar;
  myCar.honk();
  cout << myCar.brand + " " + myCar.model;
  return 0;
}
亲自试一试 »

为什么以及何时使用"Inheritance"?

- 它对于代码可重用性很有用:创建新类时重用现有类的属性和方法。