当前位置:   article > 正文

C++类和对象

c++类和对象

C++面向对象的三大属性:封装、继承、多态。对象包括属性和行为。

1、封装

1.1封装的意义

封装是C++面对对象三大特性之一。

封装的意义:

  • 将属性和形为作为一个整体,表现生活中的事物。
  • 将属性和形为加以权限控制。

语法:class 类名{访问权限:属性/ 行为};

封装意义一:

将属性和行为作为一个整体

示例:

1、创建一个圆类,求圆的周长

  1. #include<iostream>
  2. using namespace std;
  3. const double PI = 3.14;
  4. class circle
  5. {
  6. //访问权限
  7. // 公共权限
  8. public:
  9. //属性:半径
  10. int m_r;
  11. // 行为
  12. //获取圆的周长
  13. double calculateZC()
  14. {
  15. return 2 * PI * m_r;
  16. }
  17. };
  18. int main()
  19. {
  20. //通过circle类创建一个具体的circle对象
  21. circle c1;
  22. c1.m_r = 10;
  23. cout << "圆的周长为:" << c1.calculateZC()<<endl;
  24. return 0;
  25. }

2、设计一个学生类,属性有姓名和学号,可以给姓名和学号赋值,可以显示学生的姓名和学号。

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class student {
  5. public://公共权限
  6. //类中的属性和形为,统一称为成员
  7. //属性:成员属性,成员变量
  8. //行为:成员函数,成员方法
  9. //
  10. string name;
  11. string student_id;
  12. void showiinfo()
  13. {
  14. cout<<"学生姓名为:" << name << endl;
  15. cout<<"学生学号是:" << student_id << endl;
  16. }
  17. };
  18. int main()
  19. {
  20. //创建一个具体的学生,实例化
  21. student a;
  22. a.name = "张三";
  23. a.student_id = "TS20060190P31";
  24. a.showiinfo();
  25. return 0;
  26. }

封装意义二:

类在设计时,可以把属性和行为放在不同的权限下,加以控制

访问权限有三种:

  1. 公共权限 public (类内类外都可以访问)
  2. 保护权限 protected (类内可以访问,类外不可以访问),在继承的时候,父亲的保护权限儿子可以访问。
  3. 私有权限 private  (类内可以访问,类外不可以访问),继承的时候,父亲的私有权限不可以被儿子访问。
  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class person {
  5. // 公共权限
  6. public:
  7. string name;
  8. //保护权限
  9. protected:
  10. string m_car;
  11. // 私有权限
  12. private:
  13. int password;
  14. public:
  15. void func()
  16. {
  17. name = "张三";
  18. m_car = "拖拉机";
  19. password = 123457;
  20. }
  21. };
  22. int main()
  23. {
  24. person p1;
  25. p1.name = "李四";
  26. //不可以被访问
  27. //p1.m_car = "车";
  28. return 0;
  29. }

 struct 和class的区别

在c++中,struct和class的唯一区别是默认的访问权限不同

  • struct的没有访问权限的设定,因此所有的属性都是公开的。
  • class的默认访问权限是私有的。

1.2 类的构造函数和析构函数

为什么需要构造函数?

c++的目标之一是想让使用类对象的时候和使用标准型一样,但是从以上代码看,我们没法像初始化int或者结构体一样初始化类对象。没法初始化的原因在于:数据的访问权限是私有的,有的人说设置成公共权限就好了,但是这又违背了类的一个主要初衷:数据隐藏。最好的办法是在创建对象的时就进行初始化,因此C++提供了一个特殊的成员函数--类构造函数,用于创建新对象,将值传给他们的成员。

构造函数有三种形式:

  • 根据有参数和无参数分为:有参构造函数,无参函数(默认构造函数)
  • 按照类型分:普通构造函数,拷贝构造函数

值得注意的是:编译器在默认的情况下会提供默认构造函数、有参构造函数和拷贝构造函数。

但是以下两种特殊情况:

  1. 当用户自定义了有参构造函数后,编译器不再提供默认构造函数,但是会提供拷贝构造函数
  2. 当用户自定义了拷贝构造函数后,编译器不再提供默认构造函数和有参构造函数。

1.2.1 定义构造函数

  1. #include<iostream>
  2. using namespace std;
  3. //构造函数的分类及调用
  4. //分类
  5. //按照参数分类:有参构造,无参构造(默认构造)
  6. //按照类型分:普通构造函数,拷贝构造函数
  7. //构造函数的名称和类名一样
  8. class person {
  9. public:
  10. person()
  11. {
  12. cout<<"无参构造函数的调用" << endl;
  13. }
  14. person(int a)
  15. {
  16. age = a;
  17. cout << "有参构造函数的调用" << endl;
  18. }
  19. //拷贝构造函数
  20. person(const person &p)
  21. {
  22. //将传入的人身上的所有属性传到我身上
  23. age=p.age;
  24. cout << "拷贝构造函数的调用" << endl;
  25. }
  26. ~person()
  27. {
  28. cout<<"析构函数的调用" << endl;
  29. }
  30. int age;
  31. };

构造参数--拷贝函数

拷贝函数是一种特殊的构造函数,使用同一类中已经创建过的对象来初始化新的对象。拷贝函数通常出现在以下几种情况:

  • 使用一个创建好的对象初始化一个新对象
  • 值传递的方式给函数传值
  • 值方式返回函数局部对象
  1. //第一种: 使用创建好的对象创建一个新对象
  2. void test1()
  3. {
  4. Person p1(10);
  5. //使用已经创建好的p1对象创建p2
  6. Person p2(p1);
  7. }
  8. //第二种:将对象作为参数传递给函数
  9. void test2()
  10. {
  11. Person p1(10);
  12. //将p1作为函数参数传递给dowork函数
  13. dowork(p1);
  14. }
  15. // 第三种:返回局部对象
  16. Person _dowork()
  17. {
  18. Person p1(10);
  19. return p1;//将局部对象当做返回值返回
  20. }
  21. void test3()
  22. {
  23. Person p = _dowork();
  24. }

深拷贝与浅拷贝

浅拷贝指的是拷贝函数在进行对象初始化时进行的一个简单的赋值拷贝操作,复制的指向对象的指针,比如说我们用拷贝构造的方式创建了一个对象p2 ,Peroson p2(p1),虽然p2和p1的对象名不一样,但是他们指向同一块内存。

当我们成员变量的内存空间在堆区时,也就是我们用new创建成员时,进行浅拷贝创建对象会造成堆区的重读释放,编译器会报错,如下所示:

  1. #include<iostream>
  2. using namespace std;
  3. class Person {
  4. public:
  5. int m_age;
  6. int* m_height;
  7. Person(int age, int height) {
  8. cout << "Person类的有参数构造函数" << endl;
  9. m_age = age;
  10. m_height = new int(height);// 用new在堆区开辟了一块新的变量空间,需要在析构函数中释放
  11. }
  12. ~Person()
  13. {
  14. if (m_height != NULL)
  15. {
  16. delete m_height;//释放掉
  17. m_height = NULL;//预防野指针出现
  18. }
  19. }
  20. };
  21. void test()
  22. {
  23. Person p1(18, 180);
  24. Person p2(p1);//利用拷贝函数创建新对象
  25. }

解决浅拷贝出现问题的办法时利用深拷贝,深拷贝就是重新在堆区重新申请空间,进行拷贝操作

  1. #include<iostream>
  2. using namespace std;
  3. class Person {
  4. public:
  5. int m_age;
  6. int* m_height;
  7. Person(int age, int height) {
  8. cout << "Person类的有参数构造函数" << endl;
  9. m_age = age;
  10. m_height = new int(height);// 用new在堆区开辟了一块新的变量空间,需要在析构函数中释放
  11. }
  12. Person(const Person &p)
  13. {
  14. m_age = p.m_age;
  15. m_height = new int(*p.m_height); //在堆区重新申请空间
  16. }
  17. ~Person()
  18. {
  19. if (m_height != NULL)
  20. {
  21. delete m_height;//释放掉
  22. m_height = NULL;//预防野指针出现
  23. }
  24. }
  25. };
  26. void test()
  27. {
  28. Person p1(18, 180);
  29. Person p2(p1);//利用拷贝函数创建新对象
  30. }
  31. int main()
  32. {
  33. test();
  34. return 0;
  35. }

1.2.2 调用构造函数

构造函数的调用也有两种方式:

  • 显示调用
  • 隐式调用
  1. // 显示法
  2. person p2 = person(10);
  3. 显示法拷贝构造
  4. person p3 = person(p2);
  5. //隐式转换法
  6. person p4 = 10;//person p4 = person(10);
  7. //显示拷贝构造
  8. person p5 = p4;
  9. //隐式拷贝构造
  10. person p5(p4);

1.3 类对象作为类成员

c++中类的成员可以另一个类的对象,称之为对象成员。当其他类作为成员,先构造其他类,再构造自身,析构和构造相反

构造函数初始化列表

语法:

类名():变量1(初始值),变量2(初始值) {}

异同:

  • 两种函数的效果都是一样的,都是实现类成员变量的初始化
  • 初始化列表构造函数显式的初始化类的成员,而没有使用初始化列表的构造函数是对类成员的赋值。

参考链接:初始化列表构造函数

  1. class Example {
  2. public:
  3. int a;
  4. int b;
  5. //构造函数内部赋值
  6. Example()
  7. {
  8. a = 0;
  9. b = 1;
  10. }
  11. //构造函数初始化列表
  12. Example():a(0),b(1)
  13. { }
  14. };

什么时候必须使用初始化列表构造函数?

  1. 成员类型是没有默认构造函数的类。
  2. const成员或引用类型的成员。
  1. class Phone {
  2. public:
  3. Phone(string name)
  4. {
  5. m_pname = name;
  6. }
  7. string m_pname;
  8. };
  9. class Person {
  10. public:
  11. //Phone类没有默认构造函数,只能用初始化列表构造函数
  12. Person(string name, string pname):m_name(name),m_phone(pname)
  13. {
  14. }
  15. string m_name;
  16. Phone m_phone;
  17. };

1.3 静态成员

静态成员就是在成员变量和成员函数前面加上static关键字。

静态成员分为:

  • 静态成员变量
  1. 所有对象共享一份数据
  2. 在编译阶段分配内存
  3. 类内声明,类外初始化
  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class Person {
  5. public:
  6. static string name;// 类内声明
  7. };
  8. string Person::name = "张三"; //类外初始化
  9. int main()
  10. {
  11. Person p;
  12. cout << p.name << endl;
  13. Person p2;
  14. p2.name = "李四"; //当p2改变了变量的时候,所有的类对象相应的数据都被改了
  15. cout << p.name << endl;
  16. cout << p2.name << endl;
  17. }
  • 静态成员函数
  1. 所有对象共享同一个函数
  2. 静态函数只能访问静态成员变量
  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class Person {
  5. public:
  6. static string name;// 类内声明
  7. int age;
  8. static void func()
  9. {
  10. name = "张三";
  11. //age = 100; 不可以访问非静态成员变量
  12. cout << "静态成员函数的调用" << endl;
  13. }
  14. };
  15. string Person::name = "张三"; //类外初始化
  16. int main()
  17. {
  18. Person p;
  19. //两种静态成员函数的访问方式
  20. //第一种根据类名访问
  21. Person::func();
  22. //第二种根据对象访问
  23. p.func();
  24. }

1.4 this指针

C++中成员变量和成员函数是分开储存的只有非静态成员变量属于类对象上,静态成员变量、非静态成员函数、静态成员函数都不属于类对象。(这里值得一提的是,即使是空对象,也会占用一个内存,供编译器区分。)也就是说多个对象会共用一份非静态成员函数代码,那么非静态成员函数如何区分是哪个对象在调用自己呢?

c++提供特殊的对象指针--this指针。this指针指向被调用的成员函数所属类对象。不需要定义,直接使用。

this指针的用途:

  • 当形参和成员变量重名时,用this指针来区分
  • 在类的非静态成员函数中返回对象本身,用return *this
  1. #include<iostream>
  2. using namespace std;
  3. class Perosn {
  4. public:
  5. int age;
  6. Perosn(int age)
  7. {
  8. age = age;
  9. }
  10. };
  11. void test01()
  12. {
  13. Perosn p1(18);
  14. cout << "p1的年龄:" << p1.age << endl;
  15. }
  16. int main()
  17. {
  18. test01();
  19. return 0;
  20. }

p1的年龄:-858993460

当我们使用this指针后:

  1. #include<iostream>
  2. using namespace std;
  3. class Perosn {
  4. public:
  5. int age;
  6. Perosn(int age)
  7. {
  8. this->age = age;
  9. }
  10. };
  11. void test01()
  12. {
  13. Perosn p1(18);
  14. cout << "p1的年龄:" << p1.age << endl;
  15. }
  16. int main()
  17. {
  18. test01();
  19. return 0;
  20. }

p1的年龄:18

  1. #include<iostream>
  2. using namespace std;
  3. class Perosn {
  4. public:
  5. int age;
  6. Perosn(int age)
  7. {
  8. this->age = age;
  9. }
  10. Perosn& addage(const Perosn& p)
  11. {
  12. this->age += p.age;
  13. return *this; //这里返回的是一个类对象
  14. }
  15. };
  16. void test01()
  17. {
  18. Perosn p1(18);
  19. Perosn p2(10);
  20. //由于函数返回的是对象,因此我们可以链式编程
  21. p2.addage(p1).addage(p1).addage(p1);
  22. cout << "p1的年龄:" << p2.age << endl;
  23. }
  24. int main()
  25. {
  26. test01();
  27. return 0;
  28. }

p1的年龄:64

const修饰成员函数

常函数:

  • 成员函数后加const后称这个函数为常函数
  • 常函数内不可以修改成员属性
  • 成员属性声明时加关键字mutable后,在常函数中依旧可以修改

常对象:

  • 声明对象前加const称该对象为常对象
  • 常对象只能用常函数,因为普通函数会修改对象的属性

加上mutable后,

 1.5 友元

友元既可以访问公有属性,又可以访问私有属性。

定义:

1、全局函数做友元

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class Building{
  5. //友元函数的声明 Goodfriend是全局部函数
  6. friend void Goodfriend(Building& p);
  7. public:
  8. string m_sittingroom;//公有属性
  9. //构造函数初始化
  10. Building(string sittingroom, string bedroom)
  11. {
  12. m_sittingroom = sittingroom;
  13. m_bedroom = bedroom;
  14. }
  15. private:
  16. string m_bedroom; //私有属性
  17. };
  18. //引用传递
  19. void Goodfriend(Building &p)
  20. {
  21. cout << "有人正在访问你的" << p.m_sittingroom << endl;
  22. cout << "有人正在访问你的" << p.m_bedroom << endl;
  23. }
  24. void test()
  25. {
  26. Building b("客厅","卧室");
  27. Goodfriend(b);
  28. }
  29. int main()
  30. {
  31. test();
  32. return 0;
  33. }

2、类做友元

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. class Building {
  5. friend class Goodfriend; //声明友元类
  6. public:
  7. string m_sittingroom;//公有属性
  8. //构造函数初始化
  9. Building(string sittingroom, string bedroom);
  10. private:
  11. string m_bedroom; //私有属性
  12. };
  13. class Goodfriend {
  14. public:
  15. void visit();
  16. Goodfriend(Building p);//这是拷贝构造函数
  17. Building building;//指针形式:可能是new或者是指针传递
  18. };
  19. //类外实现成员函数
  20. Building::Building(string sittingroom, string bedroom)
  21. {
  22. m_bedroom = bedroom;
  23. m_sittingroom = sittingroom;
  24. }
  25. Goodfriend::Goodfriend(Building p):building(p)
  26. {
  27. }
  28. void Goodfriend::visit()
  29. {
  30. cout << "有人正在访问你的" << building.m_sittingroom << endl;
  31. cout << "有人正在访问你的" << building.m_bedroom << endl;
  32. }
  33. void test()
  34. {
  35. Building p("客厅", "卧室");
  36. Goodfriend gg(p);
  37. gg.visit();
  38. }
  39. int main()
  40. {
  41. test();
  42. return 0;
  43. }

3、成员函数作为友元

  1. #include<iostream>
  2. using namespace std;
  3. class Building;
  4. class Goodfriend {
  5. public:
  6. void visit();//可以访问buliding的私有属性
  7. void visit2();//不可以访问building的私有属性
  8. Goodfriend(Building& p);//这是拷贝构造函数
  9. Building* building;//指针形式:可能是new或者是指针传递
  10. };
  11. class Building {
  12. friend void Goodfriend::visit();//Goodfriend下的成员函数visit作为友元
  13. public:
  14. string m_sittingroom;//公有属性
  15. //构造函数初始化
  16. Building(string sittingroom, string bedroom);
  17. private:
  18. string m_bedroom; //私有属性
  19. };
  20. //类外实现成员函数
  21. Building::Building(string sittingroom, string bedroom)
  22. {
  23. m_bedroom = bedroom;
  24. m_sittingroom = sittingroom;
  25. }
  26. Goodfriend::Goodfriend(Building& p) :building(&p)
  27. {
  28. }
  29. void Goodfriend::visit()
  30. {
  31. cout << "有人正在访问你的" << building->m_sittingroom << endl;
  32. cout << "有人正在访问你的" << building->m_bedroom << endl;
  33. }
  34. void Goodfriend::visit2()
  35. {
  36. cout << "有人正在访问你的" << building->m_sittingroom << endl;
  37. //cout << "有人正在访问你的" << building->m_bedroom << endl;// 此时作为非友元的visit2不能访问私有属性
  38. }
  39. void test()
  40. {
  41. Building p("客厅", "卧室");
  42. Goodfriend gg(p);
  43. gg.visit();
  44. gg.visit2();
  45. }
  46. int main()
  47. {
  48. test();
  49. return 0;
  50. }

1.6 运算符重载

运算符重载:对已有的运算符重新进行定义,赋予其不同的功能

加号运算符重载

  • 成员函数实现重载
    1. #include<iostream>
    2. using namespace std;
    3. class person
    4. {
    5. public:
    6. person();
    7. person(int a,int b);
    8. person operator+(person& p);
    9. ~person();
    10. int m_age;
    11. int m_number;
    12. private:
    13. };
    14. person::person()
    15. {
    16. }
    17. person::person(int a,int b)
    18. {
    19. m_age = a;
    20. m_number = b;
    21. }
    22. person::~person()
    23. {
    24. }
    25. //成员函数重载
    26. person person::operator+(person& p)
    27. {
    28. person temp;
    29. //这里的this指针指的是调用成员函数的对象
    30. this->m_age = this->m_age + p.m_age;
    31. this->m_number = this->m_number + p.m_number;
    32. return *this;
    33. }
    34. void test()
    35. {
    36. person p1(10, 20);
    37. person p2(20, 30);
    38. person p3 = p1 + p2;
    39. cout << p3.m_age << "," << p3.m_number;
    40. }
    41. int main()
    42. {
    43. test();
    44. return 0;
    45. }
  • 全局函数实现重载
    1. #include<iostream>
    2. using namespace std;
    3. class person
    4. {
    5. public:
    6. person();
    7. person(int a,int b);
    8. person operator+(person& p);
    9. ~person();
    10. int m_age;
    11. int m_number;
    12. private:
    13. };
    14. person::person()
    15. {
    16. }
    17. person::person(int a,int b)
    18. {
    19. m_age = a;
    20. m_number = b;
    21. }
    22. person::~person()
    23. {
    24. }
    25. //全局函数实现重载
    26. person operator+(person& p1, person& p2)
    27. {
    28. person temp;
    29. temp.m_age = p1.m_age + p2.m_age;
    30. temp.m_number = p1.m_number + p2.m_number;
    31. return temp;
    32. }
    33. void test()
    34. {
    35. person p1(10, 20);
    36. person p2(20, 30);
    37. person p3 = p1 + p2;
    38. cout << p3.m_age << "," << p3.m_number;
    39. }
    40. int main()
    41. {
    42. test();
    43. return 0;
    44. }

    左移运算符重载

在C++中,”<<“记作左移运算符,在ostream类中左移运算符重载为输出运算符,cout就是ostream类对象,即便如此,cout也不能直接输出我们自定义的类对象,因次在定义类的时候需要对其进行重载。

在这里我们用全局函数的方式实现重载,因为用成员函数的方式实现的话,我们还需要创建一个新的对象。

  1. #include<iostream>
  2. using namespace std;
  3. #include<string>
  4. class Person
  5. {
  6. public:
  7. Person();
  8. ~Person();
  9. int m_age;
  10. string m_name;
  11. private:
  12. };
  13. Person::Person()
  14. {
  15. m_name = "张三";
  16. m_age = 26;
  17. }
  18. Person::~Person()
  19. {
  20. }
  21. //怎么解释这段代码 ostream是个类,cout是ostream类对象
  22. ostream& operator<<(ostream& out, Person& p)
  23. {
  24. out << p.m_age << " " << p.m_name;
  25. return out;
  26. }
  27. int main()
  28. {
  29. Person p;
  30. cout << p<<endl;
  31. }

通常自定义类下的属性都设置为私有属性,这时候需要配合友元来使用成员操作符。

  1. #include<iostream>
  2. using namespace std;
  3. #include<string>
  4. class Person
  5. {
  6. friend ostream& operator<<(ostream& out, Person& p);
  7. public:
  8. Person();
  9. ~Person();
  10. private:
  11. int m_age;
  12. string m_name;
  13. };
  14. Person::Person()
  15. {
  16. m_name = "张三";
  17. m_age = 26;
  18. }
  19. Person::~Person()
  20. {
  21. }
  22. //怎么解释这段代码 ostream是个类,cout是ostream类对象
  23. ostream& operator<<(ostream& out, Person& p)
  24. {
  25. out << p.m_age << " " << p.m_name;
  26. return out;
  27. }
  28. int main()
  29. {
  30. Person p;
  31. cout << p<<endl;
  32. }

2、继承

继承是面向对象的三大特性之一,那么什么时候用到继承呢?继承有什么好处呢?

我们以猫来举例子,自然界中有很多猫科动物,我们举几个简单的例子,有橘猫、狸花猫、山东狮子猫等,这些猫既有共性,又有特性,都是猫,但是毛色不一样。既有共性,又有特性。

在程序中也一样,类和类之间既有联系又有区别,对于共性的那一部分,我们可以选择提取出来,这样的话,在创造其他类的时候,直接调用这个公共部分就可以,不需要再重新编写,这个部分就叫做继承,继承能够减小代码的重复性。

语法:class 子类(派生类):继承方式 父类(基类)

通过继承,派生类对象获得了基类的数据成员,派生类对象可以使用基类的方法。那么派生对象需要干些什么呢?派生对象需要添加自己的构造函数,可以根据自己的需要添加额外的成员数据和成员函数。

代码:

  1. #include<iostream>
  2. using namespace std;
  3. class BasePage {
  4. public:
  5. void header()
  6. {
  7. cout << "首页、公开课、登录、注册...(公共头部)" << endl;
  8. }
  9. void Bottom()
  10. {
  11. cout << "帮助、交流合作、站内地图...(公共底部)" << endl;
  12. }
  13. void left()
  14. {
  15. cout << "Java、Python、C++、...(公共分类列表)" << endl;
  16. }
  17. };
  18. //类继承的写法
  19. //语法:class 子类(派生类):继承方式 父类(基类)
  20. class CPP :public BasePage
  21. {
  22. public:
  23. void content()
  24. {
  25. cout << "C++学科视频" << endl;
  26. }
  27. };
  28. class JAVA :public BasePage
  29. {
  30. public:
  31. void content()
  32. {
  33. cout << "JAVA学科视频" << endl;
  34. }
  35. };
  36. class Python:public BasePage
  37. {
  38. public:
  39. void content()
  40. {
  41. cout << "Python学科视频" << endl;
  42. }
  43. };
  44. void test()
  45. {
  46. CPP cpp;
  47. cpp.content();
  48. cpp.left();
  49. cpp.Bottom();
  50. cpp.header();
  51. Python py;
  52. py.content();
  53. py.left();
  54. py.Bottom();
  55. py.header();
  56. JAVA ja;
  57. ja.Bottom();
  58. ja.content();
  59. ja.header();
  60. ja.left();
  61. }
  62. int main()
  63. {
  64. test();
  65. }

继承方式

  • 公共继承
  • 私有继承
  • 保护继承
  1. #include<iostream>
  2. using namespace std;
  3. class Base1 {
  4. public:
  5. int m_a;
  6. protected:
  7. int m_b;
  8. private:
  9. int m_c;
  10. };
  11. //公共继承
  12. class Son1 :public Base1 {
  13. public:
  14. void func()
  15. {
  16. m_a = 100; //父类中公共权限成员 在子类中依然是公共的
  17. m_b = 10;
  18. //m_c = 30; //父类中的私有权限成员,不可以访问
  19. }
  20. };
  21. void test01()
  22. {
  23. Son1 s;
  24. //s.m_b = 100;//这行代码会报错,因为父类中的保护权限仍然是保护的 类外不可以访问
  25. s.m_a = 10;
  26. }
  27. // 私有继承
  28. class Son2 :private Base1 {
  29. public:
  30. void func()
  31. {
  32. m_a = 100;
  33. m_b = 10;
  34. }
  35. };
  36. //可以创建一个子类来验证Son2中的成员属性
  37. class grandson :public Son2 {
  38. public:
  39. void func()
  40. {
  41. /*m_a = 100;
  42. m_b = 10;*/
  43. }
  44. };
  45. void test02()
  46. {
  47. Son2 s2;
  48. //cout << s2.m_a<<endl;//在Son2 中,m_a是私有权限,不能访问
  49. //cout << s2.m_b << endl;//在Son2 中,m_b是私有权限,不能访问
  50. }
  51. //保护继承
  52. class Son3 :protected Base1 {
  53. public:
  54. void func()
  55. {
  56. m_a = 100;
  57. m_b = 10;
  58. }
  59. };
  60. void test02()
  61. {
  62. Son3 s2;
  63. //cout << s2.m_a<<endl;//在Son2 中,m_a是保护权限,不能访问
  64. //cout << s2.m_b << endl;//在Son2 中,m_b是保护权限,不能访问
  65. }

总结:

所有继承方式下,父类的私有属性都是不能访问的

公共继承下,父类的公共属性和保护属性不变

私有继承下,父类的公共属性和私有属性都是私有的

保护继承下,父类的公共属性和私有属性都是保护的。

重点:我们以为在子类中不能访问父类中的私有属性,那么私有属性就不会继承,其实是错误的,私有属性也会被继承下来,但是被编译器雪藏了,所以才不能访问。

继承中构造和析构顺序

在继承中子类和父类的构造和析构顺序是怎样的?

先构造父类,再构造子类,先析构子类,再析构父类。

  1. #include<iostream>
  2. using namespace std;
  3. class Base {
  4. public:
  5. Base()
  6. {
  7. cout << "这是Base类的构造函数" << endl;
  8. }
  9. ~Base()
  10. {
  11. cout << "这是Base类的析构函数" << endl;
  12. }
  13. };
  14. class Son :public Base {
  15. public:
  16. Son()
  17. {
  18. cout << "这是Son类的构造函数" << endl;
  19. }
  20. ~Son()
  21. {
  22. cout<<"这是Son类的析构函数" << endl;
  23. }
  24. };
  25. void test()
  26. {
  27. Son s1;
  28. }
  29. int main()
  30. {
  31. test();
  32. }

 为了加深对继承的理解,参考了书籍“C++ Primer Plus”,照着书敲了一遍代码,主要是在构造函数这块儿加深了一下理解。那么就按照书中的顺序来捋一遍。

我们首先创建一个TablePlayer基类,

程序清单 tablepayer.h

  1. #pragma once
  2. #ifndef TABLEPLAYER_H_
  3. #define TABLEPLAYER_H_
  4. #include<string>
  5. #include<iostream>
  6. using namespace std;
  7. class TablePlayer
  8. {
  9. public:
  10. TablePlayer(const string &fn,const string& ln,bool ht);
  11. void name() const;//只读函数
  12. bool HasTable() const { return hastable; };
  13. void ResetTable(bool v) { hastable = v; };
  14. private:
  15. string firstname;
  16. string lastname;
  17. bool hastable;
  18. };
  19. #endif // !

程序清单 tableplayer.cpp

  1. #include"tableplayer.h"
  2. TablePlayer::TablePlayer(const string& fn, const string& ln, bool ht) :firstname(fn), lastname(ln), hastable(ht)
  3. {
  4. }
  5. void TablePlayer::name() const
  6. {
  7. cout << lastname << "," << firstname;
  8. }

在tableplayer类记录了运动员一些基本信息的基础上,我们想添加一项功能,就是记录运动员的比分,因此我们创建一个RatePlayer类,为了不重复编写关于基本信息的代码,可以直接从TablePlayer类继承下来。

程序清单 RatePlayer.h

  1. #pragma once
  2. #ifndef RATEPLAYER_H_
  3. #define RATEPLAYER_H_
  4. #include "tableplayer.h"
  5. class RatePlayer:public TablePlayer
  6. {
  7. public:
  8. //构造函数
  9. RatePlayer(const int& r,const string&fn,const string&ln,bool ht);
  10. RatePlayer(const int& r, const TablePlayer& tp);
  11. unsigned int Rating() const { return rating; };
  12. void resetrating(unsigned int r) { rating = r; };
  13. private:
  14. unsigned int rating;
  15. };
  16. #endif // !RATEPLAYER_H_

程序清单 RatePlayer.cpp

  1. #include "RatePlayer.h"
  2. //为什么要把TablePlayer构造函数放在前面 因为先构造基类,首选的是默认构造函数
  3. RatePlayer::RatePlayer(const int& r, const string& fn, const string& ln, bool ht) :TablePlayer(fn, ln, ht), rating(r)
  4. {
  5. }
  6. //调用了基类的拷贝构造函数
  7. RatePlayer::RatePlayer(const int& r, const TablePlayer& tp) : TablePlayer(tp),rating(r)
  8. {
  9. }

程序清单 main.cpp

  1. #include"RatePlayer.h"
  2. //RatePlayer类继承tableplayer类,但是多了一个打分的1功能
  3. int main()
  4. {
  5. TablePlayer player1("Chunk", "Blizzard", true);
  6. //TablePlayer player2("Tara", "Boomdea", false);
  7. RatePlayer rateplayer2(1140, "Tara", "Boomdea", false);
  8. player1.name();
  9. if (player1.HasTable())
  10. cout << ": has a table.\n";
  11. else
  12. cout << ": hasn't a table.\n";
  13. rateplayer2.name();
  14. if (rateplayer2.HasTable())
  15. cout << ": has a table.\n";
  16. else
  17. cout << ": hasn't a table.\n";
  18. //用拷贝构造函数的方式构造一个类对象
  19. cout << "Name:";
  20. rateplayer2.name();
  21. cout << "Rating: " << rateplayer2.Rating() << endl;
  22. RatePlayer rateplayer3(1212, player1);
  23. cout << "Name:";
  24. rateplayer3.name();
  25. cout << " Rating: " << rateplayer3.Rating() << endl;
  26. }

派生类和基类之间的特殊关系

  • 在基类的方法不是私有的情况下,派生类可以使用基类的方法。(RatePlayer就调用了TablePlayer的name()方法)
  • 基类指针可以在不进行显式类型转换的情况下指向派生类对象;
  • 基类引用可以在不进行显式类型转换的情况下指向派生类对象。
  1. RatePlayer rp1={1124,"Chunk","Boomdea",false};
  2. TablePlayer* rt1=&rp1; //创建一个基类指针指向派生类对象
  3. TablePlayer& rt2=rp1; //创建一个基类引用指向派生类对象

 值得注意的是,基类指针或者基类引用只能调用基类的方法,不能用来调用派生类的方法,并且派生类指针和派生类引用不能指向基类对象。

继承中同名成员处理方式

问题:当子类中出现与父类同名的成员时,如何通过子类对象访问到父类中的同名数据。

  • 访问子类成员的时候,直接访问就可以
  • 访问父类同名成员的时候,需要加上作用域。
  • 子类成员函数和父类成员函数重名时,子类成员函数会隐藏所有的父类同名成员函数(包括重载函数),因此想要访问父类中同名成员函数,需要加作用域
  1. #include<iostream>
  2. using namespace std;
  3. class Base {
  4. public:
  5. int m_age;
  6. Base()
  7. {
  8. m_age = 10;
  9. }
  10. void func()
  11. {
  12. cout<<"这是父类的同名成员函数" << endl;
  13. }
  14. void func(int a)
  15. {
  16. cout << "这是子类的同名成员有参函数" << endl;
  17. }
  18. };
  19. class Son :public Base {
  20. public:
  21. int m_age;
  22. Son()
  23. {
  24. m_age = 20;
  25. }
  26. void func()
  27. {
  28. cout<<"这是子类的同名成员函数" << endl;
  29. }
  30. };
  31. //同名成员属性的处理方式
  32. void test()
  33. {
  34. Son s1;
  35. cout << s1.m_age << endl;//此时输出的是20,访问的是子类中的成员
  36. cout << s1.Base::m_age << endl;//此时输出的是10,访问的是父类中的成员
  37. }
  38. //同名成员函数的处理方式
  39. /*
  40. 如果子类中出现和父类中同名的成员函数,子类中的同名成员函数会隐藏掉父类中的所有同名成员函数
  41. 包括重载函数,如果想访问的话,需要加上作用域。
  42. */
  43. void test01()
  44. {
  45. Son s2;
  46. s2.func();//子类成员函数的调用
  47. //s2.func(10);//这种访问方式是不允许的
  48. s2.Base::func();//加上父类作用域后,访问父类作用域下的同名成员函数
  49. s2.Base::func(10);
  50. }
  51. int main()
  52. {
  53. //test();
  54. test01();
  55. }

继承中同名静态成员处理方式

静态成员函数和普通的成员函数的访问方式并没有什么太大的区别,唯一一个比较大的区别就是:静态成员有两种访问方式:通过类名访问和通过对象访问。

  1. #include<iostream>
  2. using namespace std;
  3. class Base {
  4. public:
  5. static int m_a;//类内声明
  6. static void func()
  7. {
  8. cout << "父类下的同名静态成员函数" << endl;
  9. }
  10. };
  11. //类外初始化
  12. int Base::m_a = 100;
  13. class Son :public Base {
  14. public:
  15. static int m_a;//类内声明
  16. static void func()
  17. {
  18. cout << "子类下的同名静态成员函数" << endl;
  19. }
  20. };
  21. int Son::m_a = 20;//类外初始化
  22. //同名静态成员函数的访问方式
  23. void test()
  24. {
  25. //通过对象访问
  26. cout<<"通过对象访问" << endl;
  27. Son s1;
  28. cout << "Son 下 m_a= "<<s1.m_a<<endl;
  29. cout << "Base 下 m_a= " << s1.Base::m_a << endl;
  30. //通过类名访问
  31. cout<<"通过类名访问" << endl;
  32. cout << "Son 下 m_a= " << Son::m_a << endl;
  33. //这段代码的解释是:通过Son类名的方式访问Base作用域下的m_a
  34. cout << "Base 下 m_a= " << Son::Base::m_a<<endl;
  35. }
  36. //同名静态成员函数访问方式
  37. void test1()
  38. {
  39. //通过对象访问
  40. cout << "通过对象访问" << endl;
  41. Son s1;
  42. cout << "Son 下 的静态成员函数 ";
  43. s1.func();
  44. cout<<endl;
  45. cout << "Base 下 的静态成员函数 ";
  46. s1.Base::func();
  47. cout<< endl;
  48. //通过类名访问
  49. cout << "通过类名访问" << endl;
  50. cout << "Son 下 的静态成员函数 ";
  51. Son::func();
  52. cout<< endl;
  53. //这段代码的解释是:通过Son类名的方式访问Base作用域下的m_a
  54. cout << "Base 下 的静态成员函数 ";
  55. Son::Base::func();
  56. cout<< endl;
  57. }
  58. int main()
  59. {
  60. test1();
  61. }

多继承语法

C++允许继承多个父类

语法:class 父类:继承方式 父类1,继承方式:父类2

为了区分多个同名函数,需要加上作用域。

C++实际开发中不建议使用多继承。

菱形继承

什么叫菱形继承呢?如上图所示,父类下有两个派生类1和2,派生类3又多继承了派生类1和2。

菱形继承会产生一个问题?假如父类中有一个成员m_a,那么派生类1和2都会继承到这个m_a,导致派生类3多继承的时候,会继承多份m_a,举个例子看一下:

以下案例中,Father和Mother是从Person这个类派生而来的,而Son多继承于Father和Mother类,

  1. #include<iostream>
  2. using namespace std;
  3. //虚继承解决菱形继承的问题
  4. class Person {
  5. public:
  6. int m_age=45;
  7. };
  8. class Father :public Person
  9. {
  10. };
  11. class Mother :public Person
  12. {
  13. };
  14. class Son :public Father,public Mother {
  15. };
  16. void test()
  17. {
  18. Son s1;
  19. //s1.m_age = 10;
  20. }
  21. int main()
  22. {
  23. test();
  24. }

我们可以用vs的开发工具看看Son类的结构,可以看到Son类从Father基类和Mother基类各继承了一份m_age,造成了数据的二义性。

那么怎么解决这个问题呢?答案是虚继承

  1. #include<iostream>
  2. using namespace std;
  3. class Person {
  4. public:
  5. int m_age=45;
  6. };
  7. //虚继承解决菱形继承的问题,
  8. //继承之前加上virtual 变成虚继承
  9. //此时的Person类称为虚基类
  10. class Father : virtual public Person {};
  11. class Mother :virtual public Person {};
  12. class Son :public Father,public Mother {};
  13. void test()
  14. {
  15. Son s1;
  16. s1.m_age = 10;//加上虚继承以后,这行代码不报错
  17. }
  18. int main()
  19. {
  20. test();
  21. }

这时候从Father和Mother类继承下来的是vbptr

 虚函数的工作原理

编译器是怎么处理虚函数的呢?编译器在处理虚函数的时候,给每个对象添加了一个隐藏成员vfptr,隐藏成员中保存了一个指向存储函数指针的数组的指针,这个指针数组叫做虚函数列表vtbl(virtual function table)。

 举个例子来看一下执行的过程:

多态

什么是多态?字面上解释就是多种形态,那么在类和对象中就可以解释为,同一个方法在基类和派生类中的行为是不同的,换句话说针对不同对象,同一个方法的行为是不同的。

现在看《C++ Primer Plus》中的例子,开发两个类,一个类用于表示基本支票账户--Brass Account,一个类用于Brass Plus支票账户,添加了透支保护性。

Brass账户有以下属性和行为:客户姓名、账号、当前结余;创建账户、存款、取款、显示账户信息。

Brass Plus账户包含了Brass账户的所有信息以及透支上限、透支贷款利率,当前透支总额,对于取款操作,考虑透支保护和显示操作必须显示plus账户的其他信息。

程序清单 Brass.h

  1. #pragma once
  2. #ifndef BRASS_H_
  3. #define BRASS_H_
  4. #include<iostream>
  5. #include<string>
  6. using namespace std;
  7. class Brass
  8. {
  9. public:
  10. Brass(const string& s="Nullbody",long an=-1,double bal=0.0);
  11. void Deposit(double amt);
  12. virtual void Withdraw(double amt);
  13. double Balance() const;
  14. virtual void ViewAcct() const;
  15. ~Brass() {};
  16. private:
  17. string fullname; //客户姓名
  18. long acctNum; //账号
  19. double balance; //当前结余
  20. };
  21. class BrassPlus :public Brass
  22. {
  23. public:
  24. //两种构造函数
  25. BrassPlus(const string& s = "Nullbody", long an = -1, double bal = 0.0, double ml = 500, double r = 0.11125);
  26. BrassPlus(const Brass& ba, double ml = 500, double r = 0.11125);
  27. void Withdraw(double amt);
  28. void ViewAcct() const;
  29. void ResetMax(double m) { maxLoan = m; };
  30. void ResetRate(double r) { rate = r; };
  31. void ResetOwes() { owesbank = 0; };
  32. ~BrassPlus() {};
  33. private:
  34. double maxLoan; //透支上限
  35. double rate; //透支贷款利率
  36. double owesbank; //当前的透支总额
  37. };
  38. #endif // !BRASS_H_

程序清单 Brass.cpp

  1. #include "Brass.h"
  2. Brass::Brass(const string& s, long an, double bal ) :fullname(s), acctNum(an), balance(bal)
  3. {
  4. }
  5. //存款
  6. void Brass::Deposit(double amt)
  7. {
  8. if (amt < 0)
  9. cout << "Negative deposit is not allowed;"
  10. << "deposit is canceled.\n";
  11. else
  12. balance += amt;
  13. }
  14. //取款
  15. void Brass::Withdraw(double amt)
  16. {
  17. if (amt < 0)
  18. cout << "Wtihdrawal amount must be positive; "
  19. << "withdrawal canceled.\n";
  20. else if (amt > balance)
  21. cout << "Withdrawal amount of $" << amt
  22. << "exceeds your balance.\n"
  23. << "withdrawal is canceled.\n";
  24. else
  25. balance -= amt;
  26. }
  27. //查看余额
  28. double Brass::Balance() const
  29. {
  30. return balance;
  31. }
  32. void Brass::ViewAcct() const
  33. {
  34. cout << "Client: " << fullname << endl;
  35. cout << "Account Number: " << acctNum << endl;
  36. cout << "Blance: $" << balance << endl;
  37. }
  38. BrassPlus::BrassPlus(const string& s , long an, double bal, double ml , double r) :Brass(s, an, bal)
  39. {
  40. maxLoan = ml;
  41. rate = r;
  42. owesbank = 0.0;
  43. }
  44. BrassPlus::BrassPlus(const Brass& ba, double ml , double r ) :Brass(ba), maxLoan(ml), rate(r),owesbank(0)
  45. {
  46. }
  47. void BrassPlus::ViewAcct() const
  48. {
  49. Brass::ViewAcct();
  50. cout << "Maximum loan: $" << maxLoan << endl;
  51. cout << "Owed to bank: $" << owesbank << endl;
  52. cout << "Loan rate: " << rate << "%.\n";
  53. }
  54. void BrassPlus::Withdraw(double amt)
  55. {
  56. double bal = Balance();
  57. if (amt <= bal)
  58. Brass::Withdraw(amt);
  59. else if (amt <= bal + maxLoan - owesbank)
  60. {
  61. double advance = amt - bal;
  62. owesbank += advance * (1 - rate);
  63. cout << "Bank advance: $" << advance * rate << endl;
  64. cout << "Finance charge: $" << advance * rate << endl;
  65. Deposit(advance);
  66. Brass::Withdraw(amt);
  67. }
  68. else
  69. cout << "Credit limit exceed. Transanction canceled.\n";
  70. }

程序清单 main.cpp

  1. #include"Brass.h"
  2. int main()
  3. {
  4. Brass dom("Domeic Banker", 11224, 4183.85);
  5. BrassPlus dot("Dorothy Banker", 12118, 2592.00);
  6. //Brass和BrassPlus中都有ViewAcct()函数,但是行为是不一样的,输出的结果也不一样
  7. //通过对象调用方法
  8. dom.ViewAcct();
  9. dot.ViewAcct();
  10. }

程序运行结果:

  1. Client: Domeic Banker
  2. Account Number: 11224
  3. Blance: $4183.85
  4. Client: Dorothy Banker
  5. Account Number: 12118
  6. Blance: $2592
  7. Maximum loan: $500
  8. Owed to bank: $0
  9. Loan rate: 0.11125%.

以上是通过对象调用方法的,如果是通过指针或者引用调用方法,它如何确定使用哪一种方法呢?如果没有使用关键字virtual,程序将根据指针类型或引用类型选择方法;如果加了virtual,程序将根据指针或引用指向的对象类型来选择方法。

  1. #include"Brass.h"
  2. int main()
  3. {
  4. Brass dom("Domeic Banker", 11224, 4183.85);
  5. BrassPlus dot("Dorothy Banker", 12118, 2592.00);
  6. //Brass和BrassPlus中都有ViewAcct()函数,但是行为是不一样的,输出的结果也不一样
  7. //通过对象调用方法
  8. /*dom.ViewAcct();
  9. dot.ViewAcct();*/
  10. Brass& b1_ref = dom; //引用类型是Brass类,指向的Brass类对象
  11. Brass& b2_ref = dot; // 引用类型是Brass类,指向的是BrassPlus类对象
  12. b1_ref.ViewAcct();
  13. b2_ref.ViewAcct();
  14. }

此时的ViewAcct()类型为非虚,根据分析是应该根据引用的类型来调用方法,因此上述代码调用的Brass::ViewAcct()。

那么代码执行的结果是:

Client: Domeic Banker
Account Number: 11224
Blance: $4183.85
Client: Dorothy Banker
Account Number: 12118
Blance: $2592

 如果加上virtual关键字后,那么执行结果有什么不一样呢?程序根据引用指向的对象类型调用了方法。

Client: Domeic Banker
Account Number: 11224
Blance: $4183.85
Client: Dorothy Banker
Account Number: 12118
Blance: $2592
Maximum loan: $500
Owed to bank: $0
Loan rate: 0.11125%.

多态满足条件

  • 有继承关系
  • 子类重写父类中的虚函数,注意是重写,不是重载。

静态联编和动态联编

什么是联编?

来看一下百度百科的解释:联编是指一个计算机程序自身彼此关联(使一个 源程序 经过编译、连接,成为一个可执行程序)的过程,在这个联编过程中,需要确定程序中的操作调用(函数调用)与执行该操作(函数)的代码段之间的映射关系。在C++中,由于函数的重载,编译器必须根据函数的参数列表和函数名才能确定使用哪个函数。

在编译阶段完成联编称为静态联编,然而加了虚函数以后,编译器在编译阶段不能完成联编,因为编译不知道选择哪种类型的对象。因此编译器在程序运行时选择正确的虚方法的代码,称为动态联编。                                                                                 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/244245
推荐阅读
相关标签
  

闽ICP备14008679号