目录
一、继承的概念
二、继承的定义
2.1 继承格式
2.2 继承方式与访问限定符
2.3 继承方式和访问限定符
2.4 默认继承方式
三、基类与派生类对象赋值转换
四、继承中的作用域
六、派生类默认成员函数
七、继承与友元
八、继承与静态成员
继承(inheritance)机制是面向对象程序设计使代码可以复用的重要的手段,其允许程序员在保持原有类特性的基础上进行扩展,增加功能。这样产生新的类被称为派生类
继承呈现了面向对象程序设计的层次结构,体现了由简单到复杂的认知过程。之前接触的复用都是函数复用,而继承便是类设计层次的复用
以下代码中Student类和Teacher类就继承了Person类:
#include
#include
using namespace std;
class Person
{
public:
void Print() {
cout << "name:" << _name << endl;
cout << "age:" << _age << endl;
}
protected:
string _name = "bjy";
int _age = 18;
};
class Student : public Person
{
protected:
int _stuid = 04;
};
class Teacher : public Person
{
protected:
int _jobid = 05;
};
继承后,父类Person的成员(成员函数和成员变量),都会变成子类的一部分。即子类Student和Teacher复用了父类Person成员
在继承中,父类也称为基类,子类是由基类派生而来的,所以子类又称为派生类
访问限定符有以下三种:
继承的方式有三种:
基类中被不同访问限定符修饰的成员,以不同的继承方式继承到派生类中后,该成员最终在派生类中的访问方式将会发生变化
基类的private成员在派生类中不可见是什么意思?
即无法在派生类中访问基类的private成员。如:虽然Student类继承了Person类,但无法在Student类中访问Person类中的private成员_name
基类的private成员无论以什么方式继承,在派生类中都是不可见的,这里的不可见是指基类的私有成员虽然被继承到了派生类对象中,但是语法上限制派生类对象不管在类内还是类外都不能访问
基类的private成员在派生类中是不能被访问的,若基类成员不想在类外直接被访问,但要在派生类中能访问,就需要定义为protected
注意: 在实际运用中一般使用的都是public继承,几乎很少使用protected和private继承,也不提倡使用protected和private继承,因为使用protected和private继承下来的成员都只能在派生类的类里面使用,实际中扩展维护性不强
在使用继承时可以不指定继承方式,使用关键字class时默认的继承方式是private,使用struct时默认的继承方式是public
//基类
class Person
{
public:
string _name = "张三"; //姓名
};
//派生类
class Student : Person //默认为private继承
{
protected:
int _stuid; //学号
};
//基类
class Person
{
public:
string _name = "张三"; //姓名
};
//派生类
struct Student : Person //默认为public继承
{
protected:
int _stuid; //学号
};
派生类对象可以赋值给基类的对象或引用,派生类的地址可以赋值给基类的指针。即赋值兼容规则,在这个过程中会发生基类和派生类对象间的赋值转换
//基类
class Person
{
protected:
string _name; //姓名
string _sex; //性别
int _age; //年龄
};
//派生类
class Student : public Person
{
protected:
int _stuid; //学号
};
Student s;
Person p = s; //派生类对象赋值给基类对象
Person* ptr = &s; //派生类对象的地址赋值给基类指针
Person& ref = s; //派生类对象赋值给基类引用
这种做法被称为切片/切割,即为将派生类中基类那部分切来赋值过去
派生类对象赋值给基类对象图示
派生类对象赋值给基类指针图示
派生类对象赋值给基类引用图示
注意:基类对象不能赋值给派生类对象,基类的指针或引用可以通过强制类型转换赋值给派生类的指针或引用,但是基类的指针或引用必须是管理的派生类对象才是安全的
在继承体系中的基类和派生类都有独立的作用域。若子类和父类中有同名成员,子类成员将屏蔽父类对同名成员的直接访问。这种情况被称为隐藏,也称为重定义
#include
#include
using namespace std;
//父类
class Person
{
protected:
int _num = 111;
};
//子类
class Student : public Person
{
public:
void fun()
{
cout << _num << endl;
}
protected:
int _num = 999;
};
int main()
{
Student s;
s.fun(); //999
return 0;
}
此时若要访问父类中的_num成员,可以使用作用域限定符进行指定访问
void fun() {
cout << Person::_num << endl; //指定访问父类作用域中的_num成员
}
若成员函数的隐藏,只需函数名相同就构成隐藏
对于以下代码,调用成员函数fun时将直接调用子类中的fun,若想调用父类中的fun,则需使用作用域限定符指定类域
#include
#include
using namespace std;
//父类
class Person
{
public:
void fun(int x)
{
cout << x << endl;
}
};
//子类
class Student : public Person
{
public:
void fun(double x)
{
cout << x << endl;
}
};
int main()
{
Student s;
s.fun(3.14); //直接调用子类中的成员函数fun
s.Person::fun(20); //指定调用父类中的成员函数fun
return 0;
}
注意:该代码中,父类中的fun和子类中的fun不构成函数重载,函数重载要求两个函数在同一作用域,而此时这两个fun函数并不在同一作用域。为了避免类似问题,实际在继承体系中最好不要定义同名的成员
默认成员函数,即程序员不写编译器也会自动生成的函数,类中的默认成员函数有以下六个
以下面这个Person类为基类
//基类
class Person
{
public:
//构造函数
Person(const string& name = "peter") :_name(name)
{
cout << "Person()" << endl;
}
//拷贝构造函数
Person(const Person& p) :_name(p._name)
{
cout << "Person(const Person& p)" << endl;
}
//赋值运算符重载函数
Person& operator=(const Person& p)
{
cout << "Person& operator=(const Person& p)" << endl;
if (this != &p) {
_name = p._name;
}
return *this;
}
//析构函数
~Person() {
cout << "~Person()" << endl;
}
private:
string _name; //姓名
};
用Person基类派生出Student类,Student类中的默认成员函数的基本逻辑如下
//派生类
class Student : public Person
{
public:
//构造函数
Student(const string& name, int id)
:Person(name) //调用基类的构造函数初始化基类的那一部分成员
, _id(id) //初始化派生类的成员
{
cout << "Student()" << endl;
}
//拷贝构造函数
Student(const Student& s)
:Person(s) //调用基类的拷贝构造函数完成基类成员的拷贝构造
, _id(s._id) //拷贝构造派生类的成员
{
cout << "Student(const Student& s)" << endl;
}
//赋值运算符重载函数
Student& operator=(const Student& s)
{
cout << "Student& operator=(const Student& s)" << endl;
if (this != &s) {
Person::operator=(s); //调用基类的operator=完成基类成员的赋值
_id = s._id; //完成派生类成员的赋值
}
return *this;
}
//析构函数
~Student() {
cout << "~Student()" << endl;
//派生类的析构函数会在被调用完成后自动调用基类的析构函数
}
private:
int _id; //学号
};
派生类与普通类的默认成员函数的不同之处概括为以下几点:
在编写派生类的默认成员函数时,需要注意以下几点:
说明:
友元关系不能继承,也就是说基类的友元可以访问基类的私有和保护成员,但是不能访问派生类的私有和保护成员(友元关系不可被继承)
以下代码中Display函数是基类Person的友元,但是Display函数不是派生类Student的友元,即Display函数无法访问派生类Student中的私有和保护成员
#include
#include
using namespace std;
class Student;
class Person
{
public:
//声明Display是Person的友元
friend void Display(const Person& p, const Student& s);
protected:
string _name; //姓名
};
class Student : public Person
{
protected:
int _id; //学号
};
void Display(const Person& p, const Student& s)
{
cout << p._name << endl; //可以访问
cout << s._id << endl; //无法访问
}
int main()
{
Person p;
Student s;
Display(p, s);
return 0;
}
若想让Display函数也能够访问派生类Student的私有和保护成员,只能在派生类Student中进行友元声明
class Student : public Person
{
public:
//声明Display是Student的友元
friend void Display(const Person& p, const Student& s);
protected:
int _id; //学号
};
若基类中定义了一个static静态成员变量,则在整个继承体系里面只有一个该静态成员。无论派生出多少个子类,都只有一个static成员实例
如:在基类Person中定义了静态成员变量_count,尽管Person又被派生类Student和Graduate继承,但在整个继承体系里面只有一个该静态成员
若是在基类Person的构造函数和拷贝构造函数中设置_count进行自增,那么就可以随时通过_count来获取该时刻已经实例化的Person、Student以及Graduate对象的总个数
#include
#include
using namespace std;
//基类
class Person
{
public:
Person() { _count++; }
Person(const Person& p) { _count++; }
protected:
string _name; //姓名
public:
static int _count; //统计人的个数
};
int Person::_count = 0; //静态成员变量在类外进行初始化
//派生类
class Student : public Person
{
protected:
int _stuNum; //学号
};
//派生类
class Graduate : public Person
{
protected:
string _seminarCourse; //研究科目
};
int main()
{
Student s1;
Student s2(s1);
Student s3;
Graduate s4;
cout << Person::_count << endl; //4
cout << Student::_count << endl; //4
return 0;
}
也可以通过打印Person类和Student类中静态成员_count的地址来证明就是同一个变量
cout << &Person::_count << endl; //00F1F320
cout << &Student::_count << endl; //00F1F320