当前位置:   article > 正文

c++类和对象_c++ 撖寡情

c++ 撖寡情

前言

        在学习完漫长的C语言,那么这篇文章也算是开始踏上了高级语言之路 。古人云:路漫漫其修远兮,吾将上下而求索。c++的道路才开始,那么我们应该为此开始思考了。余甚愚,余认为c++有太多细节了,必定耗时细磨才能将它掌握。

关于《类和对象》就用这一篇文章呈现,可能会比较长,但有目录就更易查阅。误导便是若发现有何问题,欢迎随时不吝指正,这里就谢谢大家观看了。


目录

前言

练气 

面向过程和面向对象初步认识

类的引入

类的定义

类的访问限定符及封装

【面试题】

封装

类的作用域

类的实例化

类对象模型

【面试题】

this指针

this指针的引出

this指针的特性

【面试题】  

C语言和C++实现Stack的对比

筑基

类的6个默认成员函数

构造函数

析构函数

拷贝构造函数

赋值运算符重载 

运算符重载

赋值运算符重载

前置++和后置++重载

日期类的实现

const成员

取地址及const取地址操作符重载

结丹

再谈构造函数

构造函数体赋值

初始化列表

explicit关键字

static成员

概念

面试题:

特性

友元

友元函数

说明:

友元类

内部类

概念:

特性:

匿名对象

拷贝对象时的一些编译器优化


练气 

面向过程和面向对象初步认识

有个很有意思的段子,就是关于《把大象装进冰箱需要几步》

在面向过程:①打开冰箱→②把大象塞进去→③关上冰箱

C语言是面向过程的,关注的是过程,分析出求解问题的步骤,通过函数调用逐步解决问题。

面向对象:把冰箱看成是一个对象,把大象也看成是一个对象,通过操作大象和冰箱这两个对象,完成将大象放入冰箱的过程

C++是面向对象的,关注的是对象,将一件事情拆分成不同的对象,靠对象之间的交互完成。

类的引入

        C语言结构体中只能定义变量,在C++中,结构体内不仅可以定义变量,也可以定义函数。比如: 之前在用C语言方式实现的,结构体中只能定义变量;现在以C++方式实现, 会发现struct中也可以定义函数。

这里只是演示一下,仅供参考

这里主要是凸显出c++在c的基础上有了明显的改变。

c语言实现

Stack.h

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #pragma once
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <assert.h>
  6. #include <stdbool.h>
  7. typedef int STDataType;
  8. //#define N 10
  9. //typedef struct Stack
  10. //{
  11. // STDataType _a[N];
  12. // int _top; // 栈顶
  13. //}Stack;
  14. // 支持动态增长的栈
  15. typedef int STDataType;
  16. typedef struct Stack
  17. {
  18. STDataType* _a;
  19. int _top; // 栈顶
  20. int _capacity; // 容量
  21. }Stack;
  22. // 初始化栈
  23. void StackInit(Stack* ps);
  24. // 入栈
  25. void StackPush(Stack* ps, STDataType data);
  26. // 出栈
  27. void StackPop(Stack* ps);
  28. // 获取栈顶元素
  29. STDataType StackTop(Stack* ps);
  30. // 获取栈中有效元素个数
  31. int StackSize(Stack* ps);
  32. // 检测栈是否为空,如果为空返回非零结果,如果不为空返回0
  33. bool StackEmpty(Stack* ps);
  34. // 销毁栈
  35. void StackDestroy(Stack* ps);

Stack.c 

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include "Stack.h"
  3. // 初始化栈
  4. void StackInit(Stack* ps)
  5. {
  6. assert(ps);//断言传入地址是否为空
  7. ps->_a = NULL;
  8. ps->_capacity = ps->_top = 0;
  9. }
  10. // 入栈
  11. void StackPush(Stack* ps, STDataType data)
  12. {
  13. assert(ps);
  14. if (ps->_top == ps->_capacity)
  15. {
  16. int newCapacity = ps->_capacity == 0 ? 4 : ps->_capacity*2;//判断容量是否为空并设置增加容量数量
  17. STDataType* temp = (STDataType*)realloc(ps->_a, newCapacity*sizeof(STDataType));//增加容量
  18. if (temp == NULL)//判断地址是否开辟成功
  19. {
  20. perror("realloc fail");
  21. exit(-1);
  22. }
  23. ps->_a = temp;//赋址与结构体中
  24. ps->_capacity = newCapacity;//更新容量
  25. }
  26. ps->_a[ps->_top] = data;//数据入栈
  27. ps->_top++;//栈顶++
  28. }
  29. // 出栈
  30. void StackPop(Stack* ps)
  31. {
  32. assert(ps);
  33. assert(!StackEmpty(ps));//断言栈是否为空
  34. --ps->_top;//栈顶--
  35. }
  36. // 获取栈顶元素
  37. STDataType StackTop(Stack* ps)
  38. {
  39. assert(ps);
  40. assert(!StackEmpty(ps));
  41. return ps->_a[ps->_top-1];
  42. }
  43. // 获取栈中有效元素个数
  44. int StackSize(Stack* ps)
  45. {
  46. assert(ps);
  47. return ps->_top;
  48. }
  49. // 检测栈是否为空,如果为空返回非零结果,如果不为空返回0
  50. bool StackEmpty(Stack* ps)
  51. {
  52. assert(ps);
  53. return ps->_top==0;
  54. }
  55. // 销毁栈
  56. void StackDestroy(Stack* ps)
  57. {
  58. assert(ps);
  59. free(ps->_a);//清除数组地址
  60. ps->_a = NULL;
  61. ps->_top = ps->_capacity = 0;
  62. }

c++实现

  1. typedef int DataType;
  2. struct Stack
  3. {
  4. void Init(size_t capacity)
  5. {
  6. _array = (DataType*)malloc(sizeof(DataType) * capacity);
  7. if (nullptr == _array)
  8. {
  9. perror("malloc申请空间失败");
  10. return;
  11. }
  12. _capacity = capacity;
  13. _size = 0;
  14. }
  15. void Push(const DataType& data)
  16. {
  17. // 扩容
  18. _array[_size] = data;
  19. ++_size;
  20. }
  21. DataType Top()
  22. {
  23. return _array[_size - 1];
  24. }
  25. void Destroy()
  26. {
  27. if (_array)
  28. {
  29. free(_array);
  30. _array = nullptr;
  31. _capacity = 0;
  32. _size = 0;
  33. }
  34. }
  35. DataType* _array;
  36. size_t _capacity;
  37. size_t _size;
  38. };
  39. int main()
  40. {
  41. Stack s;
  42. s.Init(10);
  43. s.Push(1);
  44. s.Push(2);
  45. s.Push(3);
  46. cout << s.Top() << endl;
  47. s.Destroy();
  48. return 0;
  49. }

类的定义

class为定义类的关键字,ClassName为类的名字,{}中为类的主体,注意类定义结束时后面分号不能省略。

类体中内容称为类的成员:类中的变量称为类的属性或成员变量; 类中的函数称为类的方法或者成员函数。

class className

{

         // 类体:由成员函数和成员变量组成

};       // 一定要注意后面的分号

 类的两种定义方式:

  1. 声明和定义全部放在类体中,需要注意:成员函数如果在类中定义,编译器可能会将其当成内联函数处理。
  2. 声明在.h文件中,类的定义放在.cpp文件中。

方式一

方式二

很多时候我们都是采用的第二种方法,第一种方式一般用于多次用到的和代码量少的时候,而第二种方式是更便于程序员们的阅读,当代码过长时是不易阅读的。

成员变量命名规则的建议:

我们看看这个函数,是不是很僵硬?

  1. class Date
  2. {
  3. public:
  4. void Init(int year)
  5. {
  6. // 这里的year到底是成员变量,还是函数形参?
  7. year = year;
  8. }
  9. private:
  10. int year;
  11. };

所以一般都建议这样

  1. class Date
  2. {
  3. public:
  4. void Init(int year)
  5. {
  6. _year = year;
  7. }
  8. private:
  9. int _year;
  10. };
  11. // 或者这样
  12. class Date
  13. {
  14. public:
  15. void Init(int year)
  16. {
  17. mYear = year;
  18. }
  19. private:
  20. int mYear;
  21. };
  22. // 其他方式也可以的,主要看公司要求。一般都是加个前缀或者后缀标识区分就行。

类的访问限定符及封装

访问限定符

C++实现封装的方式:用类将对象的属性与方法结合在一块,让对象更加完善,通过访问权限选 择性的将其接口提供给外部的用户使用。

【访问限定符说明】

1. public修饰的成员在类外可以直接被访问

2. protected和private修饰的成员在类外不能直接被访问(此处protected和private是类似的)

3. 访问权限作用域从该访问限定符出现的位置开始直到下一个访问限定符出现时为止

4. 如果后面没有访问限定符,作用域就到 } 即类结束。

5. class的默认访问权限为private,struct为public(因为struct要兼容C)

 【注意】:访问限定符只在编译时有用,当数据映射到内存后,没有任何访问限定符上的区别

【面试题】

问题:C++中struct和class的区别是什么?

解答:

        C++需要兼容C语言,所以C++中struct可以当成结构体使用。另外C++中struct还可以用来定义类。和class定义类是一样的,区别是struct定义的类默认访问权限是public,class定义的类默认访问权限是private。注意:在继承和模板参数列表位置,struct和class也有区别,后序给大 家介绍。

封装

【面试题】

面向对象的三大特性:封装、继承、多态

在类和对象阶段,主要是研究类的封装特性,那什么是封装呢?

封装:将数据和操作数据的方法进行有机结合,隐藏对象的属性和实现细节,仅对外公开接口来 和对象进行交互。       

封装本质上是一种管理,让用户更方便使用类。比如:对于电脑这样一个复杂的设备,提供给用 户的就只有开关机键、通过键盘输入,显示器,USB插孔等,让用户和计算机进行交互,完成日 常事务。但实际上电脑真正工作的却是CPU、显卡、内存等一些硬件元件。    

     对于计算机使用者而言,不用关心内部核心部件,比如主板上线路是如何布局的,CPU内部是如 何设计的等,用户只需要知道,怎么开机、怎么通过键盘和鼠标与计算机进行交互即可。因此计 算机厂商在出厂时,在外部套上壳子,将内部实现细节隐藏起来,仅仅对外提供开关机、鼠标以 及键盘插孔等,让用户可以与计算机进行交互即可。  

在C++语言中实现封装,可以通过类将数据以及操作数据的方法进行有机结合,通过访问权限来 隐藏对象内部实现细节,控制哪些方法可以在类外部直接被使用。

类的作用域

类定义了一个新的作用域,类的所有成员都在类的作用域中。在类体外定义成员时,需要使用 ::

作用域操作符指明成员属于哪个类域。

  1. class Person
  2. {
  3. public:
  4. void PrintPersonInfo();
  5. private:
  6. char _name[20];
  7. char _gender[3];
  8. int  _age;
  9. };
  10. // 这里需要指定PrintPersonInfo是属于Person这个类域
  11. void Person::PrintPersonInfo()
  12. {
  13. cout << _name << " "<< _gender << " " << _age << endl;
  14. }

类的实例化

用类类型创建对象的过程,称为类的实例化

1. 类是对对象进行描述的,是一个模型一样的东西,限定了类有哪些成员,定义出一个类并没有分配实际的内存空间来存储它;比如:入学时填写的学生信息表,表格就可以看成是一个类,来描述具体学生信息。

类就像谜语一样,对谜底来进行描述,谜底就是谜语的一个实例。

谜语(类):"年纪不大,胡子一把,主人来了,就喊妈妈"     谜底(实例):山羊

2. 一个类可以实例化出多个对象,实例化出的对象占用实际的物理空间,存储类成员变量

  1. int main()
  2. {
  3. Person._age = 100;   // 编译失败:error C2059: 语法错误:“.”
  4. return 0;
  5. }

Person类是没有空间的,只有Person类实例化出的对象才有具体的年龄。

3. 做个比方。类实例化出对象就像现实中使用建筑设计图建造出房子,类就像是设计图,只设计出需要什么东西,但是并没有实体的建筑存在,同样类也只是一个设计,实例化出的对象才能实际存储数据,占用物理空间

类对象模型

如何计算类对象的大小

问题:类中既可以有成员变量,又可以有成员函数,那么一个类的对象中包含了什么?如何计算 一个类的大小?

类对象的存储方式猜测

1.对象中包含类的各个成员

缺陷:每个对象中成员变量是不同的,但是调用同一份函数,如果按照此种方式存储,当一 个类创建多个对象时,每个对象中都会保存一份代码,相同代码保存多次,浪费空间。那么 如何解决呢?

2.代码只保存一份,在对象中保存存放代码的地址

3. 只保存成员变量,成员函数存放在公共的代码段

问题:对于上述三种存储方式,那计算机到底是按照那种方式来存储的?

我们再通过对下面的不同对象分别获取大小来分析看下

  1. // 类中既有成员变量,又有成员函数
  2. class A1 {
  3. public:
  4. void f1(){}
  5. private:
  6. int _a;
  7. };
  8. // 类中仅有成员函数
  9. class A2 {
  10. public:
  11. void f2() {}};
  12. // 类中什么都没有---空类
  13. class A3{};
  14. int main()
  15. {
  16. printf("%d %d %d", sizeof(A1), sizeof(A2), sizeof(A3));
  17. }

sizeof(A1) : ___4___ sizeof(A2) : ___1___ sizeof(A3) : ___1___

结论:

一个类的大小,实际就是该类中”成员变量”之和,当然要注意内存对齐

注意空类的大小,空类比较特殊,编译器给了空类一个字节来唯一标识这个类的对象。

结构体内存对齐规则 

1. 第一个成员在与结构体偏移量为0的地址处。

2. 其他成员变量要对齐到某个数字(对齐数)的整数倍的地址处。

注意:对齐数 = 编译器默认的一个对齐数 与 该成员大小的较小值。VS中默认的对齐数为8

3. 结构体总大小为:最大对齐数(所有变量类型最大者与默认对齐参数取最小)的整数倍。

4. 如果嵌套了结构体的情况,嵌套的结构体对齐到自己的最大对齐数的整数倍处,结构体的整体大小就是所有最大对齐数(含嵌套结构体的对齐数)的整数倍。

【面试题】

1. 结构体怎么对齐? 为什么要进行内存对齐?

因为在32位操作系统(虽然64位操作系统,但是为了保证兼容性,编程仍然主要考量32位)中,数据总线是32位,地址总线是32位。地址总线是32位,意味着寻址空间是按4递增的;数据总线32位意味着一次可读写4byte。

视线拉回我们32位cpu,32位/8位=4字节,所以cpu一次工作可以取到4个字节的数据。那以读取的角度排布我们内存的话可以像下面这样。一次cpu读一行数据。

当我们不对齐时操作系统是需要读取到完整的i需要读取两次(或者说两行)然后拼接再一起,I/O操作是很耗时的,这是很浪费时间的。如果需要更快读到数据,那一个数据最好是存在一整行,像上面对齐那样。实则就是用空间换时间,优点是提高了可移植性和cpu性能

2. 如何让结构体按照指定的对齐参数进行对齐?能否按照3、4、5即任意字节对齐?

(1)  #pragma pack

(2) 可以设置,具体看硬件

平台原因(移植原因): 不是所有的硬件平台都能访问任意地址上的任意数据
的;某些硬件平台只能 在某些地址处取某些特定类型的数据,否则抛出硬件异常

性能原因:数据结构(尤其是栈)应该尽可能地在自然边界上对齐。原因在于,为了访问未对齐的内存,处理器需要作两次内存访问;而对齐的内存访问仅需要一次访问。

3. 什么是大小端?如何测试某台机器是大端还是小端,有没有遇到过要考虑大小端的场景

http://t.csdn.cn/3BTWs

  1. #include <sdtio.h>
  2. int check_sys()
  3. {
  4. int i = 1;
  5. if (*(char*)&i == 1)
  6. {
  7. return 1;
  8. }
  9. else
  10. {
  11. return 0;
  12. }
  13. }
  14. int main()
  15. {
  16. int ret = check_sys();
  17. if (ret = 1)
  18. {
  19. printf("小端\n");
  20. }
  21. else
  22. {
  23. printf("大端\n");
  24. }
  25. return 0;
  26. }

this指针

this指针的引出

先来定义一个日期类 Date

  1. class Date
  2. {
  3. public:
  4. void Init(int year, int month, int day)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. void Print()
  11. {
  12. cout << _year << "-" << _month << "-" << _day << endl;
  13. }
  14. private:
  15. int _year;
  16. int _month;
  17. int _day;
  18. };
  19. int main()
  20. {
  21. Date d1, d2;
  22. d1.Init(2022, 1, 11);
  23. d2.Init(2022, 1, 12);
  24. d1.Print();
  25. d2.Print();
  26. return 0;
  27. }

对于上述类,有这样的一个问题:

Date类中有 Init 与 Print 两个成员函数,函数体中没有关于不同对象的区分,那当d1调用 Init 函 数时,该函数是如何知道应该设置d1对象,而不是设置d2对象呢?

C++中通过引入this指针解决该问题,即:C++编译器给每个“非静态的成员函数“增加了一个隐藏 的指针参数,让该指针指向当前对象(函数运行时调用该函数的对象),在函数体中所有“成员变量”的操作,都是通过该指针去访问。只不过所有的操作对用户是透明的,即用户不需要来传递,编 译器自动完成。

this指针的特性

1. this指针的类型:类类型* const,即成员函数中,不能给this指针赋值。

2. 只能在“成员函数”的内部使用

3. this指针本质上是“成员函数”的形参,当对象调用成员函数时,将对象地址作为实参传递给

this形参。所以对象中不存储this指针

4. this指针是“成员函数”第一个隐含的指针形参,一般情况由编译器通过ecx寄存器自动传 递,不需要用户传递

【面试题】  

1. this指针存在哪里?

其实编译器在生成程序时加入了获取对象首地址的相关代码。编译器有并把获取的首地址存放在了寄存器ECX中(VC++编译器是放在ECX中,其它可能不同)。也就是成员函数的其它参数正常都是存放在栈中。而this指针参数则是存放在寄存器中。类的静态成员函数因为没有this指针这个参数,所以类的静态成员函数也就无法调用类的非静态成员变量。

2. this指针可以为空吗?

this可以为空,当我们在调用函数的时候,如果函数内部并不需要使用到this,也就是不需要通过this指向当前对象并对其进行操作时才可以为空(当我们在其中什么都不放或者在里面随便打印一个字符串),如果调用的函数需要指向当前对象,并进行操作,则会发生错误(空指针引用)就跟C中一样不能进行空指针的引用。

3.下面程序编译运行结果是? A、编译报错 B、运行崩溃 C、正常运行

  1. class A
  2. {
  3. public:
  4. void Print()
  5. {
  6. cout << "Print()" << endl;
  7. }
  8. private:
  9. int _a;
  10. };
  11. int main()
  12. {
  13. A* p = nullptr;
  14. p->Print();
  15. return 0;
  16. }

正常运行:p不发生解引用,因为成员函数的地址不存在对象中,在公共代码区域。这里p为空指针传入print中,然后this接受print地址直接输入。

4.下面程序编译运行结果是? A、编译报错 B、运行崩溃 C、正常运行

  1. class A
  2. {
  3. public:
  4. void PrintA()
  5. {
  6. cout << _a << endl;
  7. }
  8. private:
  9. int _a;
  10. };
  11. int main()
  12. {
  13. A* p = nullptr;
  14. p->PrintA();
  15. return 0;
  16. }

运行崩溃:前面一样,this接受的是_a,因为-a是成员变量会对print的p进行解引用

C语言和C++实现Stack的对比

C语言实现

  1. #include <iostream>
  2. #include <assert.h>
  3. typedef int DataType;
  4. typedef struct Stack
  5. {
  6. DataType* array;
  7. int capacity;
  8. int size;
  9. }Stack;
  10. void StackInit(Stack* ps)
  11. {
  12. assert(ps);
  13. ps->array = (DataType*)malloc(sizeof(DataType)* 3);
  14. if (NULL == ps->array)
  15. {
  16. assert(0);
  17. return;
  18. } ps->capacity = 3;
  19. ps->size = 0;
  20. }
  21. void StackDestroy(Stack* ps)
  22. {
  23. assert(ps);
  24. if (ps->array)
  25. {
  26. free(ps->array);
  27. ps->array = NULL;
  28. ps->capacity = 0;
  29. ps->size = 0;
  30. }
  31. }
  32. void CheckCapacity(Stack* ps)
  33. {
  34. if (ps->size == ps->capacity)
  35. {
  36. int newcapacity = ps->capacity * 2;
  37. DataType* temp = (DataType*)realloc(ps->array,
  38. newcapacity*sizeof(DataType));
  39. if (temp == NULL)
  40. {
  41. perror("realloc申请空间失败!!!");
  42. return;
  43. }
  44. ps->array = temp;
  45. ps->capacity = newcapacity;
  46. }
  47. }
  48. void StackPush(Stack* ps, DataType data)
  49. {
  50. assert(ps);
  51. CheckCapacity(ps);
  52. ps->array[ps->size] = data;
  53. ps->size++;
  54. }
  55. int StackEmpty(Stack* ps)
  56. {
  57. assert(ps);
  58. return 0 == ps->size;
  59. }
  60. void StackPop(Stack* ps)
  61. {
  62. if (StackEmpty(ps))
  63. return;
  64. ps->size--;
  65. }
  66. DataType StackTop(Stack* ps)
  67. {
  68. assert(!StackEmpty(ps));
  69. return ps->array[ps->size - 1];
  70. }
  71. int StackSize(Stack* ps)
  72. {
  73. assert(ps);
  74. return ps->size;
  75. }
  76. int main()
  77. {
  78. Stack s;
  79. StackInit(&s);
  80. StackPush(&s, 1);
  81. StackPush(&s, 2);
  82. StackPush(&s, 3);
  83. StackPush(&s, 4);
  84. printf("%d\n", StackTop(&s));
  85. printf("%d\n", StackSize(&s));
  86. StackPop(&s);
  87. StackPop(&s);
  88. printf("%d\n", StackTop(&s));
  89. printf("%d\n", StackSize(&s));
  90. StackDestroy(&s);
  91. return 0;
  92. }

C++实现

  1. #include <iostream>
  2. typedef int DataType;
  3. class Stack
  4. {
  5. public:
  6. void Init()
  7. {
  8. _array = (DataType*)malloc(sizeof(DataType)* 3);
  9. if (NULL == _array)
  10. {
  11. perror("malloc申请空间失败!!!");
  12. return;
  13. }
  14. _capacity = 3;
  15. _size = 0;
  16. } void Push(DataType data)
  17. {
  18. CheckCapacity();
  19. _array[_size] = data;
  20. _size++;
  21. }
  22. void Pop()
  23. {
  24. if (Empty())
  25. return;
  26. _size--;
  27. }
  28. DataType Top(){ return _array[_size - 1]; }
  29. int Empty() { return 0 == _size; }
  30. int Size(){ return _size; }
  31. void Destroy()
  32. {
  33. if (_array)
  34. {
  35. free(_array);
  36. _array = NULL;
  37. _capacity = 0;
  38. _size = 0;
  39. }
  40. }
  41. private:
  42. void CheckCapacity()
  43. {
  44. if (_size == _capacity)
  45. {
  46. int newcapacity = _capacity * 2;
  47. DataType* temp = (DataType*)realloc(_array, newcapacity *
  48. sizeof(DataType));
  49. if (temp == NULL)
  50. {
  51. perror("realloc申请空间失败!!!");
  52. return;
  53. }
  54. _array = temp;
  55. _capacity = newcapacity;
  56. }
  57. }
  58. private:
  59. DataType* _array;
  60. int _capacity;
  61. int _size;
  62. };
  63. int main()
  64. {
  65. Stack s;
  66. s.Init();
  67. s.Push(1);
  68. s.Push(2);
  69. s.Push(3);
  70. s.Push(4);
  71. printf ("%d\n", s.Top());
  72. printf("%d\n", s.Size());
  73. s.Pop();
  74. s.Pop();
  75. printf("%d\n", s.Top());
  76. printf("%d\n", s.Size());
  77. s.Destroy();
  78. return 0;
  79. }

筑基

类的6个默认成员函数

如果一个类中什么成员都没有,简称为空类。

空类中真的什么都没有吗?并不是,任何类在什么都不写时,编译器会自动生成以下6个默认成员 函数。

默认成员函数:用户没有显式实现,编译器会生成的成员函数称为默认成员函数。

构造函数

概念

对于以下Date类:

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. using namespace std;
  4. class Date
  5. {
  6. public:
  7. void Inti(int year, int month, int day)
  8. {
  9. _year = year;
  10. _month = month;
  11. _day = day;
  12. }
  13. void Print()
  14. {
  15. cout << _year << "-" << _month << "-" << _day << endl;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };
  22. int main()
  23. {
  24. Date d1;
  25. d1.Inti(2022, 10, 5);
  26. d1.Print();
  27. Date d2;
  28. d2.Inti(2022, 10, 6);
  29. d2.Print();
  30. printf("%p\n%p", d1, d2);
  31. return 0;
  32. }

对于Date类,可以通过 Init 公有方法给对象设置日期,但如果每次创建对象时都调用该方法设置 信息,未免有点麻烦,那能否在对象创建时,就将信息设置进去呢?

构造函数是一个特殊的成员函数,名字与类名相同,创建类类型对象时由编译器自动调用,以保证每个数据成员都有 一个合适的初始值,并且在对象整个生命周期内只调用一次

特性

构造函数是特殊的成员函数,需要注意的是,构造函数虽然名称叫构造,但是构造函数的主要任 务并不是开空间创建对象,而是初始化对象

其特征如下:

1. 函数名与类名相同。

2. 无返回值。

3. 对象实例化时编译器自动调用对应的构造函数。

4. 构造函数可以重载。

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. using namespace std;
  4. class Date
  5. {
  6. public:
  7. //void Inti(int year, int month, int day)
  8. //{
  9. // _year = year;
  10. // _month = month;
  11. // _day = day;
  12. //}
  13. //Date()
  14. //{
  15. //}
  16. Date(int year, int month, int day)
  17. {
  18. _year = year;
  19. _month = month;
  20. _day = day;
  21. }
  22. void Print()
  23. {
  24. cout << _year << "-" << _month << "-" << _day << endl;
  25. }
  26. private:
  27. int _year;
  28. int _month;
  29. int _day;
  30. };
  31. int main()
  32. {
  33. //调用无参构造函数
  34. //Date d1;
  35. // 调用带参的构造函数
  36. Date d2(2022, 10, 6);
  37. d2.Print();
  38. return 0;
  39. }

【注意】如果通过无参构造函数创建对象时,对象后面不用跟括号,否则就成了函数声明

5. 如果类中没有显式定义构造函数,则C++编译器会自动生成一个无参的默认构造函数,一旦用户显式定义编译器将不再生成。  

  1. class Date
  2. {
  3. public:
  4. /*
  5. // 如果用户显式定义了构造函数,编译器将不再生成
  6. Date(int year, int month, int day)
  7. {
  8. _year = year;
  9. _month = month;
  10. _day = day;
  11. }
  12. */
  13. void Print()
  14. {
  15. cout << _year << "-" << _month << "-" << _day << endl;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };
  22. int main()
  23. {
  24. //Date类中构造函数屏蔽后,代码可以通过编译,因为编译器生成了一个无参的默认构造函数
  25. //Date类中构造函数放开,代码编译失败,因为一旦显式定义任何构造函数,编译器将不再生成
  26. // 无参构造函数,放开后报错:error C2512: “Date”: 没有合适的默认构造函数可用
  27. Date d1;
  28. d1.Print();
  29. return 0;
  30. }

【注意】:当自动生成的默认构造函数的默认值(函数重载)是随机值

这里就很有意思,如果直接用我们发现Date就会报错,如果不用内置类型就是随机值。那么如何解决呢?

我们可以给他加上缺省参数就可以完美解决了。

  1. Date(int year=1, int month=2, int day=3)
  2. {
  3. _year = year;
  4. _month = month;
  5. _day = day;
  6. }

默认构造函数中函数重载有什么用呢?

解答:提供多个构造函数,多个初始化方式

  1. class Date
  2. {
  3. public:
  4. Date()
  5. {
  6. _year = 1;
  7. _month = 2;
  8. _day = 3;
  9. }
  10. void Print()
  11. {
  12. cout << _year << "-" << _month << "-" << _day << endl;
  13. }
  14. private:
  15. int _year;
  16. int _month;
  17. int _day;
  18. };
  19. int main()
  20. {
  21. Date d1;
  22. d1.Print();
  23. return 0;
  24. }

6.关于编译器生成的默认成员函数,不实现构造函数的情况下,编译器会 生成默认的构造函数。但是看起来默认构造函数又没什么用?d对象调用了编译器生成的默 认构造函数,但是d对象_year/_month/_day,依旧是随机值。也就说在这里编译器生成的默认构造函数并没有什么用?

解答:C++把类型分成内置类型(基本类型)和自定义类型。内置类型就是语言提供的数据类 型,如:int/char...,自定义类型就是我们使用class/struct/union等自己定义的类型,看看 下面的程序,就会发现编译器生成默认的构造函数会对自定类型成员_t调用的它的默认构造函数。内置类型不处理,自定义类型会处理。

  1. class Time
  2. {
  3. public:
  4. Time()
  5. {
  6. cout << "Time()" << endl;
  7. _hour = 0;
  8. _minute = 0;
  9. _second = 0;
  10. }
  11. private:
  12. int _hour;
  13. int _minute;
  14. int _second;
  15. };
  16. class Date
  17. {
  18. private:
  19. // 基本类型(内置类型)
  20. int _year;
  21. int _month;
  22. int _day;
  23. // 自定义类型
  24. Time _t;
  25. };
  26. int main()
  27. {
  28. Date d;
  29. return 0;
  30. }

【注意】:C++11 中针对内置类型成员不初始化的缺陷,又打了补丁,即:内置类型成员变量在 类中声明时可以给默认值。

  1. _second = 0;
  2. }
  3. private:
  4. int _hour;
  5. int _minute;
  6. int _second;
  7. };
  8. class Date
  9. {
  10. private:
  11. // 基本类型(内置类型)
  12. int _year = 1970;
  13. int _month = 1;
  14. int _day = 1;
  15. // 自定义类型
  16. Time _t;
  17. };
  18. int main()
  19. {
  20. Date d;
  21. return 0;
  22. }

7. 无参的构造函数和全缺省的构造函数都称为默认构造函数,并且默认构造函数只能有一个。 注意:无参构造函数、全缺省构造函数、我们没写编译器默认生成的构造函数,都可以认为 是默认构造函数。

  1. class Date
  2. {
  3. public:
  4. //Date()
  5. //{
  6. // _year = 1900;
  7. // _month = 1;
  8. // _day = 1;
  9. //}
  10. Date(int year = 1900, int month = 1, int day = 1)
  11. {
  12. _year = year;
  13. _month = month;
  14. _day = day;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };
  21. // 以下测试函数能通过编译吗?
  22. void Test()
  23. {
  24. Date d1;
  25. }

析构函数

概念

通过前面构造函数的学习,我们知道一个对象是怎么来的,那一个对象又是怎么没呢的? 析构函数:与构造函数功能相反,析构函数不是完成对对象本身的销毁,局部对象销毁工作是由 编译器完成的。而对象在销毁时会自动调用析构函数,完成对象中资源的清理工作。

特性

1. 析构函数名是在类名前加上字符 ~。

2. 无参数无返回值类型。

3. 一个类只能有一个析构函数。若未显式定义,系统会自动生成默认的析构函数。

 注意:析构函数不能重载

4. 对象生命周期结束时,C++编译系统系统自动调用析构函数。

  1. typedef int DataType;
  2. class Stack
  3. {
  4. public:
  5. Stack(size_t capacity = 3)
  6. {
  7. _array = (DataType*)malloc(sizeof(DataType)* capacity);
  8. if (NULL == _array)
  9. {
  10. perror("malloc申请空间失败!!!");
  11. return;
  12. }
  13. _capacity = capacity;
  14. _size = 0;
  15. }
  16. void Push(DataType data)
  17. {
  18. // CheckCapacity();
  19. _array[_size] = data;
  20. _size++;
  21. }
  22. // 其他方法...
  23. ~Stack()
  24. {
  25. if (_array)
  26. {
  27. free(_array);
  28. _array = NULL;
  29. _capacity = 0;
  30. _size = 0;
  31. }
  32. }
  33. private:
  34. DataType* _array;
  35. int _capacity;
  36. int _size;
  37. };
  38. void TestStack()
  39. {
  40. Stack s;
  41. s.Push(1);
  42. s.Push(2);
  43. }

5. 关于编译器自动生成的析构函数,是否会完成一些事情呢?下面的程序我们会看到,编译器 生成的默认析构函数,对自定类型成员调用它的析构函数。

  1. class Time
  2. {
  3. public:
  4. ~Time()
  5. {
  6. cout << "~Time()" << endl;
  7. }
  8. private:
  9. int _hour;
  10. int _minute;
  11. int _second;
  12. };
  13. class Date
  14. {
  15. private:
  16. // 基本类型(内置类型)
  17. int _year = 1970;
  18. int _month = 1;
  19. int _day = 1;
  20. // 自定义类型
  21. Time _t;
  22. };
  23. int main()
  24. {
  25. Date d;
  26. return 0;
  27. }

代码解释 

程序运行结束后输出:~Time()
在main方法中根本没有直接创建Time类的对象,为什么最后会调用Time类的析构函数?

因为:main方法中创建了Date对象d,而d中包含4个成员变量,其中_year, _month, _day三个是 内置类型成员,销毁时不需要资源清理,最后系统直接将其内存回收即可;而_t是Time类对象,所以在d销毁时,要将其内部包含的Time类的_t对象销毁,所以要调用Time类的析构函数。但是:main函数中不能直接调用Time类的析构函数,实际要释放的是Date类对象,所以编译器会调用Date类的析构函数,而Date没有显式提供,则编译器会给Date类生成一个默认的析构函数,目的是在其内部调用Time类的析构函数,即当Date对象销毁时,要保证其内部每个自定义对象都可以正确销毁main函数中并没有直接调用Time类析构函数,而是显式调用编译器为Date类生成的默认析构函数

注意:创建哪个类的对象则调用该类的析构函数,销毁那个类的对象则调用该类的析构函数

6. 如果类中没有申请资源时,析构函数可以不写,直接使用编译器生成的默认析构函数,比如

Date类;有资源申请时,一定要写,否则会造成资源泄漏,比如Stack类。

拷贝构造函数

概念

拷贝构造函数:只有单个形参,该形参是对本类类型对象的引用(一般常用const修饰),在用已存 在的类类型对象创建新对象时由编译器自动调用

特征

1. 拷贝构造函数是构造函数的一个重载形式

2. 拷贝构造函数的参数只有一个且必须是类类型对象的引用,使用传值方式编译器直接报错, 因为会引发无穷递归调用

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. // Date(const Date& d)   // 正确写法
  11. Date(const Date& d)
  12. {
  13. _year = d._year;
  14. _month = d._month;
  15. _day = d._day;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };
  22. int main()
  23. {
  24. Date d1;
  25. Date d2(d1);
  26. return 0;
  27. }

3. 若未显式定义,编译器会生成默认的拷贝构造函数。 默认的拷贝构造函数对象按内存存储按 字节序完成拷贝,这种拷贝叫做浅拷贝,或者值拷贝。  

  1. class Time
  2. {
  3. public:
  4. Time()
  5. {
  6. _hour = 1;
  7. _minute = 1;
  8. _second = 1;
  9. }
  10. Time(const Time& t)
  11. {
  12. _hour = t._hour;
  13. _minute = t._minute;
  14. _second = t._second;
  15. cout << "Time::Time(const Time&)" << endl;
  16. }
  17. private:
  18. int _hour;
  19. int _minute;
  20. int _second;
  21. };
  22. class Date
  23. {
  24. private:
  25. // 基本类型(内置类型)
  26. int _year = 1970;
  27. int _month = 1;
  28. int _day = 1;
  29. // 自定义类型
  30. Time _t;
  31. };
  32. int main()
  33. {
  34. Date d1;
  35. // 用已经存在的d1拷贝构造d2,此处会调用Date类的拷贝构造函数
  36. //Date类并没有显式定义拷贝构造函数,则编译器会给Date类生成一个默认的拷贝构造函数
  37. Date d2(d1);
  38. return 0;
  39. }

【注意】:在编译器生成的默认拷贝构造函数中,内置类型是按照字节方式直接拷贝的,而自定 义类型是调用其拷贝构造函数完成拷贝的。

4. 编译器生成的默认拷贝构造函数已经可以完成字节序的值拷贝了,还需要自己显式实现吗? 当然像日期类这样的类是没必要的。那么下面的类呢?  

这里会发现下面的程序会崩溃掉,这里就需要我们以后讲的深拷贝去解决。

  1. typedef int DataType;
  2. class Stack
  3. {
  4. public:
  5. Stack(size_t capacity = 10)
  6. {
  7. _array = (DataType*)malloc(capacity * sizeof(DataType));
  8. if (nullptr == _array)
  9. {
  10. perror("malloc申请空间失败");
  11. return;
  12. }
  13. _size = 0;
  14. _capacity = capacity;
  15. }
  16. void Push(const DataType& data)
  17. {
  18. // CheckCapacity();
  19. _array[_size] = data;
  20. _size++;
  21. }
  22. ~Stack()
  23. {
  24. if (_array)
  25. {
  26. free(_array);
  27. _array = nullptr;
  28. _capacity = 0;
  29. _size = 0;
  30. }
  31. }
  32. private:
  33. DataType *_array;
  34. size_t _size;
  35. size_t _capacity;
  36. };
  37. int main()
  38. {
  39. Stack s1;
  40. s1.Push(1);
  41. s1.Push(2);
  42. s1.Push(3);
  43. s1.Push(4);
  44. Stack s2(s1);
  45. return 0;
  46. }

【注意】:类中如果没有涉及资源申请时,拷贝构造函数是否写都可以;一旦涉及到资源申请 时,则拷贝构造函数是一定要写的,否则就是浅拷贝。

拷贝构造函数典型调用场景:

1.使用已存在对象创建新对象

2.函数参数类型为类类型对象

3.函数返回值类型为类类型对象

  1. class Date
  2. {
  3. public:
  4. Date(int year, int minute, int day)
  5. {
  6. cout << "Date(int,int,int):" << this << endl;
  7. }
  8. Date(const Date& d)
  9. {
  10. cout << "Date(const Date& d):" << this << endl;
  11. }
  12. ~Date()
  13. {
  14. cout << "~Date():" << this << endl;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };
  21. Date Test(Date d)//场景2
  22. {
  23. Date temp(d);
  24. return temp;//场景3
  25. }
  26. int main()
  27. {
  28. Date d1(2022, 1, 13);//调用构造函数
  29. Test(d1);// 场景1
  30. return 0;
  31. }

【注意】为了提高程序效率,一般对象传参时,尽量使用引用类型,返回时根据实际场景,能用引用尽量使用引用。使用引用可以减少拷贝构造。

赋值运算符重载 

运算符重载

C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其 返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似。

函数名字为:关键字operator后面接需要重载的运算符符号。

operator:operator是C++的关键字,它和运算符一起使用,表示一个运算符函数,理解时应将operator=整体上视为一个函数名。使用operator可以赋予原本的运算符新的功能。

函数原型:返回值类型 operator操作符(参数列表)

注意:

1.不能通过连接其他符号来创建新的操作符:比如operator@

2.重载操作符必须有一个类类型参数

3.用于内置类型的运算符,其含义不能改变,例如:内置的整型+,不能改变其含义

作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐 藏的this

4.  (.*)  (::)  (sizeof) (?:)   (.) 注意以上5个运算符不能重载。这个经常在笔试选择题中出现。

全局的operator== 

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5.   {
  6.        _year = year;
  7.        _month = month;
  8.        _day = day;
  9.   }    
  10. //private:
  11. int _year;
  12. int _month;
  13. int _day;
  14. };
  15. // 这里会发现运算符重载成全局的就需要成员变量是公有的,那么问题来了,封装性如何保证?
  16. // 这里其实可以用我们后面学习的友元解决,或者干脆重载成成员函数。
  17. bool operator==(const Date& d1, const Date& d2)
  18. {
  19.    return d1._year == d2._year
  20.   && d1._month == d2._month
  21.        && d1._day == d2._day;
  22. }
  23. void Test ()
  24. {
  25.    Date d1(2018, 9, 26);
  26.    Date d2(2018, 9, 27);
  27.    cout<<(d1 == d2)<<endl;
  28. }

这里会发现运算符重载成全局的就需要成员变量是公有的,那么问题来了,无法保证封装性。

这里其实可以用我们后面学习的友元解决,或者干脆重载成成员函数。

 成员函数的operator== 

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. // bool operator==(Date* this, const Date& d2)
  11. bool operator==(const Date& d2)
  12. {
  13. return _year == d2._year
  14. && _month == d2._month
  15. && _day == d2._day;
  16. }
  17. private:
  18. int _year;
  19. int _month;
  20. int _day;
  21. };

这里需要注意的是,左操作数是this,指向调用函数的对象 。

赋值运算符重载

1.赋值运算符重载格式

参数类型:const T&,传递引用可以提高传参效率

返回值类型:T&,返回引用可以提高返回的效率,有返回值目的是为了支持连续赋值

检测是否自己给自己赋值

返回*this :要复合连续赋值的含义

  1. class Date
  2. {
  3. public :
  4. Date(int year = 1900, int month = 1, int day = 1)
  5.   {
  6.        _year = year;
  7.        _month = month;
  8.        _day = day;
  9.   }
  10. Date (const Date& d)
  11.   {
  12.        _year = d._year;
  13.        _month = d._month;
  14.        _day = d._day;
  15.   }
  16. Date& operator=(const Date& d)
  17. {
  18. if(this != &d)
  19.       {
  20.            _year = d._year;
  21.            _month = d._month;
  22.            _day = d._day;
  23.       }
  24.        
  25.        return *this;
  26. }
  27. private:
  28. int _year ;
  29. int _month ;
  30. int _day ;
  31. };

 2. 赋值运算符只能重载成类的成员函数不能重载成全局函数

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. int _year;
  11. int _month;
  12. int _day;
  13. };
  14. // 赋值运算符重载成全局函数,注意重载成全局函数时没有this指针了,需要给两个参数
  15. Date& operator=(Date& left, const Date& right)
  16. {
  17. if (&left != &right)
  18. {
  19. left._year = right._year;
  20. left._month = right._month;
  21. left._day = right._day;
  22. }
  23. return left;
  24. }

原因:赋值运算符如果不显式实现,编译器会生成一个默认的。此时用户再在类外自己实现 一个全局的赋值运算符重载,就和编译器在类中生成的默认赋值运算符重载冲突了,故赋值 运算符重载只能是类的成员函数。

 3. 用户没有显式实现时,编译器会生成一个默认赋值运算符重载,以值的方式逐字节拷贝。

【注 意】:内置类型成员变量是直接赋值的,而自定义类型成员变量需要调用对应类的赋值运算符重载完成赋值。

  1. class Time
  2. {
  3. public:
  4. Time()
  5. {
  6. _hour = 1;
  7. _minute = 1;
  8. _second = 1;
  9. }
  10. Time& operator=(const Time& t)
  11. {
  12. if (this != &t)
  13. {
  14. _hour = t._hour;
  15. _minute = t._minute;
  16. _second = t._second;
  17. }
  18. return *this;
  19. }
  20. private:
  21. int _hour;
  22. int _minute;
  23. int _second;
  24. };
  25. class Date
  26. {
  27. private:
  28. // 基本类型(内置类型)
  29. int _year = 1970;
  30. int _month = 1;
  31. int _day = 1;
  32. // 自定义类型
  33. Time _t;
  34. };
  35. int main()
  36. {
  37. Date d1;
  38. Date d2;
  39. d1 = d2;
  40. return 0;
  41. }

既然编译器生成的默认赋值运算符重载函数已经可以完成字节序的值拷贝了,还需要自己实现吗?当然像日期类这样的类是没必要的。那么下面的类呢?验证一下试试?

这里会发现下面的程序会崩溃掉,这里就需要我们以后学的深拷贝去解决。

  1. typedef int DataType;
  2. class Stack
  3. {
  4. public:
  5. Stack(size_t capacity = 10)
  6. {
  7. _array = (DataType*)malloc(capacity * sizeof(DataType));
  8. if (nullptr == _array)
  9. {
  10. perror("malloc申请空间失败");
  11. return;
  12. }
  13. _size = 0;
  14. _capacity = capacity;
  15. }
  16. void Push(const DataType& data)
  17. {
  18. // CheckCapacity();
  19. _array[_size] = data;
  20. _size++;
  21. }
  22. ~Stack()
  23. {
  24. if (_array)
  25. {
  26. free(_array);
  27. _array = nullptr;
  28. _capacity = 0;
  29. _size = 0;
  30. }
  31. }
  32. private:
  33. DataType *_array;
  34. size_t _size;
  35. size_t _capacity;
  36. };
  37. int main()
  38. {
  39. Stack s1;
  40. s1.Push(1);
  41. s1.Push(2);
  42. s1.Push(3);
  43. s1.Push(4);
  44. Stack s2;
  45. s2 = s1;
  46. return 0;
  47. }

 【注意】:如果类中未涉及到资源管理,赋值运算符是否实现都可以;一旦涉及到资源管理则必 须要实现。

总结:这里就是指当浅拷贝时,s2将地址指向了s1的内存空间,而导致丢失了自己原来的空间。就会存在两个问题:1是存在泄漏 2是在同一块空间销毁两次,导致程序崩溃。

前置++和后置++重载

前置++:返回+1之后的结果

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. Date& operator++()
  11. {
  12. _day += 1;
  13. return *this;
  14. }
  15. private:
  16. int _year;
  17. int _month;
  18. int _day;
  19. };

注意:this指向的对象函数结束后不会销毁,故以引用方式返回提高效率 

后置++: 前置++和后置++都是一元运算符,为了让前置++与后置++形成能正确重载

C++规定:后置++重载时多增加一个int类型的参数,但调用函数时该参数不用传递,编译器
自动传递

  1. class Date
  2. {
  3. public:
  4. Date(int year = 1900, int month = 1, int day = 1)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. Date operator++(int)
  11. {
  12. Date temp(*this);
  13. _day += 1;
  14. return temp;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };

注意:后置++是先使用后+1,因此需要返回+1之前的旧值,故需在实现时需要先将this保存
一份,然后给this+1,而temp是临时对象,因此只能以值的方式返回,不能返回引用。

日期类的实现

Date.h

  1. #pragma once
  2. #include <iostream>
  3. using namespace std;
  4. class Date
  5. {
  6. public:
  7. int GetMonthDay(int year, int month)
  8. {
  9. static int monthDayArray[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  10. if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)))
  11. {
  12. return 29;
  13. }
  14. else
  15. {
  16. return monthDayArray[month];
  17. }
  18. }
  19. Date(int year = 1, int month = 1, int day = 1)
  20. {
  21. _year = year;
  22. _month = month;
  23. _day = day;
  24. // 检查日期是否合法
  25. if (!(year >= 1
  26. && (month >= 1 && month <= 12)
  27. && (day >= 1 && day <= GetMonthDay(year, month))))
  28. {
  29. cout << "非法日期" << endl;
  30. }
  31. }
  32. void Print()
  33. {
  34. cout << _year << "/" << _month << "/" << _day << endl;
  35. }
  36. bool operator==(const Date& d);
  37. // d1 > d2
  38. bool operator>(const Date& d);
  39. // d1 >= d2
  40. bool operator>=(const Date& d);
  41. bool operator<=(const Date& d);
  42. bool operator<(const Date& d);
  43. bool operator!=(const Date& d);
  44. // d1 += 100
  45. Date& operator+=(int day);
  46. // d1 + 100
  47. Date operator+(int day);
  48. // d1 -= 100
  49. Date& operator-=(int day);
  50. // d1 - 100
  51. Date operator-(int day);
  52. // 前置
  53. Date& operator++();
  54. // 后置
  55. Date operator++(int);
  56. private:
  57. int _year;
  58. int _month;
  59. int _day;
  60. };

 date.cpp

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include "Date.h"
  3. //运算符重载
  4. bool Date::operator==(const Date& d)
  5. {
  6. return _year == d._year
  7. && _month == d._month
  8. && _day == d._day;
  9. }
  10. // d1 > d2
  11. bool Date::operator>(const Date& d)
  12. {
  13. if (_year > d._year)
  14. {
  15. return true;
  16. }
  17. else if (_year == d._year && _month > d._month)
  18. {
  19. return true;
  20. }
  21. else if (_year == d._year && _month == d._month && _day > d._day)
  22. {
  23. return true;
  24. }
  25. return false;
  26. }
  27. bool Date::operator>=(const Date& d)
  28. {
  29. return *this > d || *this == d;
  30. }
  31. bool Date::operator<=(const Date& d)
  32. {
  33. return !(*this > d);
  34. }
  35. bool Date::operator<(const Date& d)
  36. {
  37. return !(*this >= d);
  38. }
  39. bool Date::operator!=(const Date& d)
  40. {
  41. return !(*this == d);//已实现==运算符重载
  42. }
  43. Date& Date::operator+=(int day)
  44. {
  45. if (day < 0)
  46. {
  47. //return *this -= -day;
  48. return *this -= abs(day);
  49. }
  50. _day += day;
  51. while (_day > GetMonthDay(_year, _month))
  52. {
  53. _day -= GetMonthDay(_year, _month);
  54. _month++;
  55. if (_month == 13)
  56. {
  57. ++_year;
  58. _month = 1;
  59. }
  60. }
  61. return *this;
  62. }
  63. // d1 + 100
  64. Date Date::operator+(int day)
  65. {
  66. Date ret(*this);
  67. ret += day;
  68. return ret;
  69. }
  70. // d1 -= 100
  71. Date& Date::operator-=(int day)
  72. {
  73. if (day < 0)
  74. {
  75. //return *this -= -day;
  76. return *this += abs(day);
  77. }
  78. _day -= day;
  79. while (_day <= 0)
  80. {
  81. --_month;
  82. if (_month == 0)
  83. {
  84. --_year;
  85. _month = 12;
  86. }
  87. _day += GetMonthDay(_year, _month);
  88. }
  89. return *this;
  90. }
  91. // d1 - 100
  92. Date Date::operator-(int day)
  93. {
  94. Date ret(*this);
  95. ret -= day;
  96. return ret;
  97. }
  98. // 前置
  99. Date& Date::operator++()
  100. {
  101. *this += 1;
  102. return *this;
  103. }
  104. // 后置-- 多一个int参数主要是为了根前置区分
  105. // 构成函数重载
  106. Date Date::operator++(int)
  107. {
  108. Date tmp(*this);
  109. *this += 1;
  110. return tmp;
  111. }

test.cpp

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include "Date.h"
  3. void TestDate1()
  4. {
  5. Date d1(2022, 10, 8);
  6. Date d3(d1);
  7. Date d4(d1);
  8. d1 -= 10000;
  9. d1.Print();
  10. Date d2(d1);
  11. /*Date d3 = d2 - 10000;
  12. d3.Print();*/
  13. (d2 - 10000).Print();
  14. d2.Print();
  15. d3 -= -10000;
  16. d3.Print();
  17. d4 += -10000;
  18. d4.Print();
  19. }
  20. void TestDate2()
  21. {
  22. Date d1(2022, 10, 8);
  23. Date d2(d1);
  24. Date d3(d1);
  25. Date d4(d1);
  26. (++d1).Print(); // d1.operator++()
  27. d1.Print();
  28. (d2++).Print(); // d1.operator++(1)
  29. d2.Print();
  30. }
  31. int main()
  32. {
  33. TestDate2();
  34. return 0;
  35. }

const成员

将const修饰的“成员函数”称之为const成员函数,const修饰类成员函数,实际修饰该成员函数

隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改

  1. class Date
  2. {
  3. public:
  4. Date(int year, int month, int day)
  5. {
  6. _year = year;
  7. _month = month;
  8. _day = day;
  9. }
  10. void Print()
  11. {
  12. cout << "Print()" << endl;
  13. cout << "year:" << _year << endl;
  14. cout << "month:" << _month << endl;
  15. cout << "day:" << _day << endl << endl;
  16. }
  17. void Print() const
  18. {
  19. cout << "Print()const" << endl;
  20. cout << "year:" << _year << endl;
  21. cout << "month:" << _month << endl;
  22. cout << "day:" << _day << endl << endl;
  23. }
  24. private:
  25. int _year; //
  26. int _month; //
  27. int _day; //
  28. };
  29. void Test()
  30. {
  31. Date d1(2022,1,13);
  32. d1.Print();
  33. const Date d2(2022,1,13);
  34. d2.Print();
  35. }

请思考下面的几个问题:

1. const对象可以调用非const成员函数吗?

2. 非const对象可以调用const成员函数吗?

答:1.不能,2.能   const对象只能调用const成员函数、不能调用非const成员函数; 非const对象可以调用const成员函数 

3. const成员函数内可以调用其它的非const成员函数吗?

4. 非const成员函数内可以调用其它的const成员函数吗?

答:3.不能,4.能 const修饰的对象实则修饰的是该对象的this指针,并且const修饰的成员不能进行修改,如果使用const调用非const成员函数,可能会将const对象进行修改。

 

取地址及const取地址操作符重载

这两个默认成员函数一般不用重新定义 ,编译器默认会生成。

  1. class Date
  2. {
  3. public:
  4. Date* operator&()
  5. {
  6. return this;
  7. }
  8. const Date* operator&()const
  9. {
  10. return this;
  11. }
  12. private:
  13. int _year; // 年
  14. int _month; // 月
  15. int _day; // 日
  16. };

【注意】:这两个运算符一般不需要重载,使用编译器生成的默认取地址的重载即可,只有特殊情况,才需要重载,比如想让别人获取到指定的内容!

  1. const Date* operator&()const
  2. {
  3. return this;
  4. }

如果需要this做返回值,那就需要const修饰取地址操作符重载,因为this前面被const修饰了,作为返回值时必须由const修饰。


结丹

再谈构造函数

构造函数体赋值

在创建对象时,编译器通过调用构造函数,给对象中各个成员变量一个合适的初始值

  1. class Date
  2. {
  3. public:
  4. Date(int year, int month, int day)
  5. {
  6.     _year = year;
  7.     _month = month;
  8.     _day = day;
  9. }
  10. private:
  11. int _year;
  12. int _month;
  13. int _day;
  14. };

虽然上述构造函数调用之后,对象中已经有了一个初始值,但是不能将其称为对对象中成员变量 的初始化,构造函数体中的语句只能将其称为赋初值,而不能称作初始化。因为初始化只能初始 化一次,而构造函数体内可以多次赋值。

初始化列表

初始化列表:以一个冒号开始,接着是一个以逗号分隔的数据成员列表,每个"成员变量"后面跟 一个放在括号中的初始值或表达式

  1. class Date
  2. {
  3. public:
  4. Date(int year, int month, int day)
  5. : _year(year)
  6. , _month(month)
  7. , _day(day)
  8. {}
  9. private:
  10. int _year;
  11. int _month;
  12. int _day;
  13. };

【注意】

1. 每个成员变量在初始化列表中只能出现一次(初始化只能初始化一次)

2. 类中包含以下成员,必须放在初始化列表位置进行初始化:

(1)引用成员变量

(2)const成员变量

(3)自定义类型成员(且该类没有默认构造函数时)

  1. class A
  2. {
  3. public:
  4. A(int a)
  5. :_a(a)
  6. {}
  7. private:
  8. int _a;
  9. };
  10. class B
  11. {
  12. public:
  13. B(int a, int ref)
  14. :_aobj(a)
  15. , _ref(ref)
  16. , _n(10)
  17. {}
  18. private:
  19. A _aobj; //没有默认构造函数
  20. int& _ref; //引用
  21. const int _n; // const
  22. };

const:因为const修饰变量具有常性,不能被赋值修改,所有只能在最开始初始化。那么对象每个成员就在初始化列表定义。

  1. private:
  2. const int _n =1;

当我们使用缺省参数是在声明的时候,没有进行初始化,那么它会进入初始化列表进行初始化,这里缺省值只是打的一个补丁,内置类型如果没有缺省值,或者没有在初始列表进行初始化就是个随机值,如果缺省值,有初始化列表定义,那么会直接选择初始化列表。

引用:引用也只有一次初始化机会,也是在它定义的地方。

默认构造函数:Class B中没有默认构造,就会调用Class A的,如果需要程重新定义_aobj那么就可以使用初始化列表,如果Class A中也没有就会报错

【注意】:每个成员都要走初始化列表,就算不显示在初始化列表,也会走初始化列表,内置类型有缺省用缺省值,没有就是随机值;自定义类型,调用它的默认构造,如果没有默认构造就报错。

3.尽量使用初始化列表初始化,因为不管你是否使用初始化列表,对于自定义类型成员变量, 一定会先使用初始化列表初始化。

  1. class Time
  2. {
  3. public:
  4. Time(int hour = 0)
  5. :_hour(hour)
  6. {
  7. cout << "Time()" << endl;
  8. }
  9. private:
  10. int _hour;
  11. };
  12. class Date
  13. {
  14. public:
  15. Date(int day)
  16. {}
  17. private:
  18. int _day;
  19. Time _t;
  20. };
  21. int main()
  22. {
  23. Date d(1);
  24. }

4. 成员变量在类中序声明次序就是其在初始化列表中的初始化顺,与其在初始化列表中的先后次序无关

下面代码会是怎么样?

A. 输出1  1

B.程序崩溃

C.编译不通过

D.输出1  随机值

  1. class A
  2. {
  3. public:
  4. A(int a)
  5. :_a1(a)
  6. , _a2(_a1)
  7. {}
  8. void Print() {
  9. cout << _a1 << " " << _a2 << endl;
  10. }
  11. private:
  12. int _a2;
  13. int _a1;
  14. };
  15. int main() {
  16. A aa(1);
  17. aa.Print();
  18. }

答:输出1  随机值,因为成员变量在类中序声明次序就是其在初始化列表中的初始化顺,这里_a2先声明,那么就先执行_a2(_a1),这里还没有给_a1传参数,所以就是只随机值,当跟_a1传参执行后所以就会输出1;

建议:

1.尽量使用初始化列表

2.一个类尽量提供默认构造。(推荐提供全缺省)

explicit关键字

构造函数不仅可以构造与初始化对象,对于单个参数或者除第一个参数无默认值其余均有默认值 的构造函数,还具有类型转换的作用。

  1. class Date
  2. {
  3. public:
  4. // 1. 单参构造函数,没有使用explicit修饰,具有类型转换作用
  5. // explicit修饰构造函数,禁止类型转换---explicit去掉之后,代码可以通过编译
  6. explicit Date(int year)
  7. //Date(int year)
  8. :_year(year)
  9. {}
  10. // 2. 虽然有多个参数,但是创建对象时后两个参数可以不传递,没有使用explicit修饰,具有类型转换作用
  11. // explicit修饰构造函数,禁止类型转换
  12. Date(int year = 1, int month = 1, int day = 1)
  13. : _year(year)
  14. , _month(month)
  15. , _day(day)
  16. {}
  17. /*
  18. Date& operator=(const Date& d)
  19. {
  20. if (this != &d)
  21. {
  22. _year = d._year;
  23. _month = d._month;
  24. _day = d._day;
  25. }
  26. return *this;
  27. }
  28. */
  29. private:
  30. int _year;
  31. int _month;
  32. int _day;
  33. };
  34. //string(const char* str)
  35. //{}
  36. //void push_back(const string& s);
  37. int main()
  38. {
  39. int i = 0;
  40. double d = i;
  41. const double& rd = i;
  42. Date d3(d1);
  43. Date d4 = d1;
  44. //string s1("hello");
  45. //push_back(s1);
  46. //string s2 = "hello";
  47. //push_back(s2);
  48. //push_back("hello");
  49. return 0;
  50. }

首先重拾一下死去的记忆:

    int i = 0;
    double d = i;//1

    //double& rd = i;//报错
    const double& rd = i;//2

(1)int类型定义i,将i赋值与double类型的d,这里会出现隐式转换。

(2)这里我们加上必须加上const,因为i这里是零时变量具有常性,所以接受i时必须用const修饰

前面就是c,那么进入c++后类型变成类:

     Date d1(2022);
    // 隐式类型的转换
    Date d2 = 2022;
    const Date& d5 = 2022;

这里我们将int类型(2022)这个临时对象 赋值于Date中的d2。

 随着编译器的提升            构造+拷贝构造---->优化成:直接构造

 那么这里为避免隐式类型转换,就用explicit修饰构造函数。

未使用explicit

使用explicit--报错

explicit的使用范围

举例--只做了解

  1. void push_back(const string& s);//容器
  2. int main()
  3. {
  4. string s1("hello");
  5. push_back(s1);
  6. string s2 = "hello";
  7. push_back(s2);
  8. push_back("hello");
  9. return 0;
  10. }

直接将string用于push_back中,就避免了先构造再传参。这里就直接用push_back传参。

多参数构造

c++98是不支持多参数的,在c++11才开始支持

  1. class Date
  2. {
  3. public:
  4. // 虽然有多个参数,但是创建对象时后两个参数可以不传递,没有使用explicit修饰,具有类型转换作用
  5. // explicit修饰构造函数,禁止类型转换
  6. Date(int year = 1, int month = 1, int day = 1)
  7. : _year(year)
  8. , _month(month)
  9. , _day(day)
  10. {}
  11. Date& operator=(const Date& d)
  12. {
  13. if (this != &d)
  14. {
  15. _year = d._year;
  16. _month = d._month;
  17. _day = d._day;
  18. }
  19. return *this;
  20. }
  21. private:
  22. int _year;
  23. int _month;
  24. int _day;
  25. };
  26. int main()
  27. {
  28. Date d1 = { 2022, 1, 2 };//构造+拷贝构造
  29. //等价于
  30. Date d2 = (2022, 1, 2 );//直接构造
  31. const Date &d3 = { 2022, 1, 2 };//临时对象
  32. return 0;
  33. }

static成员

概念

明为static的类成员称为类的静态成员,用static修饰的成员变量,称之为静态成员变量;用

static修饰的成员函数,称之为静态成员函数。静态成员变量一定要在类外进行初始化

面试题:

实现一个类,计算程序中创建出了多少个类对象。

  1. class A
  2. {
  3. public:
  4. A()
  5. {
  6. ++_scount;
  7. }
  8. A(const A& t)
  9. {
  10. ++_scount;
  11. }
  12. ~A()
  13. {
  14. --_scount;
  15. }
  16. static int GetACount() {
  17. return _scount;
  18. }
  19. private:
  20. static int _scount;
  21. };
  22. int A::_scount = 0;
  23. void TestA()
  24. {
  25. cout << A::GetACount() << endl;
  26. A a1, a2;
  27. A a3(a1);
  28. cout << A::GetACount() << endl;
  29. }
  30. int main()
  31. {
  32. TestA();
  33. return 0;
  34. }

答: 0 ,3;这里两次构造+一次拷贝构造

【注意】:上面可以用全局变量,但是不够好,因为c++注重封装,用全局就可以随意被改变,而这里就选择用了static,static会受类域的影响,就很好的解决了封装性的问题

我们是不能在初始化列表对static的成员变量进行初始化的,因为static修饰的成员变量是存放在静态区的,而平时我们的成员变量是在栈区的,而且static修饰的成员变量是可以被每个对象共享的,如果都来把它初始化一般是不好的。

所以我们就应该在全局进入类中对它初始化

int A::_scount = 0;//全局定义

static修饰类的函数

  1. static int GetN()
  2. {
  3. return _scount;
  4. }

没有this指针,只能访问静态成员,但是不受类域的限制

特性

1. 静态成员为所有类对象所共享,不属于某个具体的对象,存放在静态区

2. 静态成员变量必须在类外定义,定义时不添加static关键字,类中只是声明

3. 类静态成员即可用 类名::静态成员 或者 对象.静态成员 来访问

4. 静态成员函数没有隐藏的this指针,不能访问任何非静态成员

5. 静态成员也是类的成员,受public、protected、private 访问限定符的限制

【问题】  

1. 静态成员函数可以调用非静态成员函数吗?

不能,静态成员函数的实现中访问非静态成员变量,编译器就不知道这个非静态成员变量所属的对象

2. 非静态成员函数可以调用类的静态成员函数吗?

能,因为静态成员函数是被共享的,可以用于非静态成员函数。

友元

友元提供了一种突破封装的方式,有时提供了便利。但是友元会增加耦合度,破坏了封装,所以 友元不宜多用。

友元分为:友元函数和友元类

友元函数

问题:现在尝试去重载operator,然后发现没办法将operator重载成成员函数。因为cout的 输出流对象和隐含的this指针在抢占第一个参数的位置。this指针默认是第一个参数也就是左操作 数了。但是实际使用中cout需要是第一个形参对象,才能正常使用。所以要将operator重载成 全局函数。但又会导致类外没办法访问成员,此时就需要友元来解决。operator>>同理。

  1. class Date
  2. {
  3. public:
  4. Date(int year, int month, int day)
  5. : _year(year)
  6. , _month(month)
  7. , _day(day)
  8. {}
  9. // d1 << cout; -> d1.operator<<(&d1, cout); 不符合常规调用
  10. // 因为成员函数第一个参数一定是隐藏的this,所以d1必须放在<<的左侧
  11. ostream& operator<<(ostream& _cout)
  12. {
  13. _cout << _year << "-" << _month << "-" << _day << endl;
  14. return _cout;
  15. }
  16. private:
  17. int _year;
  18. int _month;
  19. int _day;
  20. };

友元函数可以直接访问类的私有成员,它是定义在类外部的普通函数,不属于任何类,但需要在 类的内部声明,声明时需要加friend关键字。

  1. class Date
  2. {
  3. friend ostream& operator<<(ostream& _cout, const Date& d);
  4. friend istream& operator>>(istream& _cin, Date& d);
  5. public:
  6. Date(int year = 1900, int month = 1, int day = 1)
  7. : _year(year)
  8. , _month(month)
  9. , _day(day)
  10. {}
  11. private:
  12. int _year;
  13. int _month;
  14. int _day;
  15. };
  16. ostream& operator<<(ostream& _cout, const Date& d)
  17. {
  18. _cout << d._year << "-" << d._month << "-" << d._day;
  19. return _cout;
  20. }
  21. istream& operator>>(istream& _cin, Date& d)
  22. {
  23. _cin >> d._year;
  24. _cin >> d._month;
  25. _cin >> d._day;
  26. return _cin;
  27. }
  28. int main()
  29. {
  30. Date d;
  31. cin >> d;
  32. cout << d << endl;
  33. return 0;
  34. }

说明:

友元函数可访问类的私有和保护成员,但不是类的成员函数

友元函数不能用const修饰

友元函数可以在类定义的任何地方声明,不受类访问限定符限制

一个函数可以是多个类的友元函数

友元函数的调用与普通函数的调用原理相同

友元类

 友元类的所有成员函数都可以是另一个类的友元函数,都可以访问另一个类中的非公有成员。

友元关系是单向的,不具有交换性。

比如上述Time类和Date类,在Time类中声明Date类为其友元类,那么可以在Date类中直接 访问Time类的私有成员变量,但想在Time类中访问Date类中私有的成员变量则不行。

友元关系不能传递 如果C是B的友元, B是A的友元,则不能说明C时A的友元。

友元关系不能继承,在继承位置再给大家详细介绍。

  1. class Time
  2. {
  3.   friend class Date;   // 声明日期类为时间类的友元类,则在日期类中就直接访问Time
  4. 中的私有成员变量
  5. public:
  6. Time(int hour = 0, int minute = 0, int second = 0)
  7. : _hour(hour)
  8. , _minute(minute)
  9. , _second(second)
  10. {}
  11.  
  12. private:
  13.   int _hour;
  14.   int _minute;
  15.   int _second;
  16. };
  17. class Date
  18. {
  19. public:
  20.   Date(int year = 1900, int month = 1, int day = 1)
  21.       : _year(year)
  22.       , _month(month)
  23.       , _day(day)
  24.   {}
  25.  
  26.   void SetTimeOfDate(int hour, int minute, int second)
  27.   {
  28.       // 直接访问时间类私有的成员变量
  29.       _t._hour = hour;
  30.       _t._minute = minute;
  31.       _t._second = second;
  32.   }
  33.  
  34. private:
  35.   int _year;
  36.   int _month;
  37.   int _day;
  38. Time _t;
  39. };

内部类

概念:

如果一个类定义在另一个类的内部,这个内部类就叫做内部类。内部类是一个独立的类, 它不属于外部类,更不能通过外部类的对象去访问内部类的成员。外部类对内部类没有任何优越 的访问权限。

【注意】:内部类就是外部类的友元类,参见友元类的定义,内部类可以通过外部类的对象参数来访 问外部类中的所有成员。但是外部类不是内部类的友元。

特性:

1. 内部类可以定义在外部类的public、protected、private都是可以的。

2. 注意内部类可以直接访问外部类中的static成员,不需要外部类的对象/类名。

3. sizeof(外部类)=外部类,和内部类没有任何关系。

  1. class A
  2. {
  3. private:
  4. static int k;
  5. int h;
  6. public:
  7. class B // B天生就是A的友元
  8. {
  9. public:
  10. void foo(const A& a)
  11. {
  12. cout << k << endl;//OK
  13. cout << a.h << endl;//OK
  14. }
  15. };
  16. };
  17. int A::k = 1;
  18. int main()
  19. {
  20.    A::B b;
  21.    b.foo(A());
  22.    
  23.    return 0;
  24. }

匿名对象

  1. class A
  2. {
  3. public:
  4. A(int a = 0)
  5. :_a(a)
  6. {
  7. cout << "A(int a)" << endl;
  8. }
  9. ~A()
  10. {
  11. cout << "~A()" << endl;
  12. }
  13. private:
  14. int _a;
  15. };
  16. class Solution {
  17. public:
  18. int Sum_Solution(int n) {
  19. //...
  20. return n;
  21. }
  22. };
  23. int main()
  24. {
  25. A aa1;
  26. // 不能这么定义对象,因为编译器无法识别下面是一个函数声明,还是对象定义
  27. //A aa1();
  28. // 但是我们可以这么定义匿名对象,匿名对象的特点不用取名字,
  29. // 但是他的生命周期只有这一行,我们可以看到下一行他就会自动调用析构函数
  30. A();
  31. A aa2(2);
  32. // 匿名对象在这样场景下就很好用,当然还有一些其他使用场景,这个我们以后遇到了再说
  33. Solution().Sum_Solution(10);
  34. return 0;
  35. }

拷贝对象时的一些编译器优化

在传参和传返回值的过程中,一般编译器会做一些优化,减少对象的拷贝,这个在一些场景下还 是非常有用的。

  1. class A
  2. {
  3. public:
  4. A(int a = 0)
  5. :_a(a)
  6. {
  7. cout << "A(int a)" << endl;
  8. }
  9. A(const A& aa)
  10. :_a(aa._a)
  11. {
  12. cout << "A(const A& aa)" << endl;
  13. } A& operator=(const A& aa)
  14. {
  15. cout << "A& operator=(const A& aa)" << endl;
  16. if (this != &aa)
  17. {
  18. _a = aa._a;
  19. }
  20. return *this;
  21. }
  22. ~A()
  23. {
  24. cout << "~A()" << endl;
  25. }
  26. private:
  27. int _a;
  28. };
  29. void f1(A aa)
  30. {}
  31. A f2()
  32. {
  33. A aa;
  34. return aa;
  35. }
  36. int main()
  37. {
  38. // 传值传参
  39. A aa1;
  40. f1(aa1);
  41. cout << endl;
  42. // 传值返回
  43. f2();
  44. cout << endl;
  45. // 隐式类型,连续构造+拷贝构造->优化为直接构造
  46. f1(1);
  47. // 一个表达式中,连续构造+拷贝构造->优化为一个构造
  48. f1(A(2));
  49. cout << endl;
  50. // 一个表达式中,连续拷贝构造+拷贝构造->优化一个拷贝构造
  51. A aa2 = f2();
  52. cout << endl;
  53. // 一个表达式中,连续拷贝构造+赋值重载->无法优化
  54. aa1 = f2();
  55. cout << endl;
  56. return 0;
  57. }

       

感谢大家支持,这篇文章到这里结束了! 相信看到这里大家在基础篇的修炼已经不弱了,也欢迎与大家互动。

                                

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

闽ICP备14008679号