继承的概念
1.什么是继承
1.简单定义 我们来看一下下面这串代码注意其中的两个类father 和 son using namespace std;
#include<iostream>
class father
{
public:void definity(){cout << "father" << endl;}
protected:int tall 180;int age …
8.1 The Desire for Generality
今天我们将会讨论一个全新的主题,称为继承。为了铺垫,让我们考虑在过去几节课中构建的SList类和AList类。我们看到它们实际上具有完全相同的操作,它们都允许我们添加元素、获取元素、移除元素以及获取大小&am…