在 C++ 中,可以将属性和方法从一个类继承到另一个类。我们将 "inheritance concept" 分为两类:
要从类继承,请使用:
象征。
在下面的示例中,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;
}
亲自试一试 »
- 它对于代码可重用性很有用:创建新类时重用现有类的属性和方法。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!