【C++】C++类和对象详解(上)

目录

思维导图大纲:

 思维方面:

 1.  类的定义:

2.  类的特点:

 3.  this指针:

4.  类的默认成员函数 

 默认构造函数

 1.构造函数 

  2.析构函数

 3.拷贝构造函数

4. 赋值运算符重载 

1. 运算符重载

5. 日期类实现:

Date.h 

Date.cpp

Text.cpp 


思维导图大纲:

 思维方面:

思维方面:由面向过程转化为面向对象
我们造一辆车,我们需要金属框架,轮胎,玻璃窗,发动机等等
面向过程:我们去自己造金属框架,轮胎,玻璃窗,发动机等等,然后组装
面向对象:我们自己不造以上配件,我们直接组装 

 1.  类的定义:

1. C语言中的struct结构体
我们只能在其中放变量
更改更方便的名字需要借助typedef

typedef struct Stack
{int* array;int capacity;int size;
}Stack;

2. C++中的class类
我们可以在其中存放变量,我们将这些变量叫做成员变量
成员变量前最好加_下划线来区分
我们还可以存放函数,我们将这些函数叫做成员函数
我们不用使用typedef直接使用类名 

class Stack
{// 成员函数// 初始化void Init();// 销毁void Destroy();// 成员变量int* _array;int _capacity;int _size;
};

2.  类的特点:

  (1) 类域
 我们之前了解了命名空间域,全局域,局部域
 在类里面也被类域保护,声明和定义分离时需要表明

class Stack
{// 成员函数// 声明在内// 初始化void Init(int n = 4);// 销毁void Destroy();// 成员变量int* _array;int _capacity;int _size;
};// 定义在外
// 需要使用Stack::声明类域
void Stack::Init(int n)
{_array = (int*)malloc(sizeof(int) * n);if (_array == nullptr){perror("malloc fail!");return;}_capacity = n;_size = 0;
}

 (2)访问限定符
 我们知道类的成员函数和成员变量属于类域内,当我们主函数去调用时访问权限不够
 类的默认权限为私有——private
 类的三大权限:public-公有,private—私有,protect-保护
 想要访问类需要将权限改为公有,但默认我们不去修改类的成员变量,所以我们只将成员函数设为公有 

class Stack
{
public:// 成员函数// 初始化void Init(int n = 4){_array = (int*)malloc(sizeof(int) * n);if (_array == nullptr){perror("malloc fail!");return;}_capacity = n;_size = 0;}// 销毁void Destroy(){free(_array);_array = nullptr;_capacity = 0;_size = 0;}private:// 成员变量int* _array;int _capacity;int _size;
};

类的实列化:
前面的类只是声明,我们需要定义-即开空间
说人话就是:前面的类就好比一张图纸,我们实例化就是根据这张图纸建筑房子
类和对象的关系是:一对多,一张图纸可以盖很多很多相同的房子 

int main()
{// 类的实列化Stack st;st.Init();st.Destroy();return 0;
}

对象的大小计算和c语言的结构体的内存对齐规则一模一样
首先我们的类中的成员函数会被多次调用,不同的对象都会去调用,所以我们为了节省空间
不将成员函数放在类中存储,我们将成员函数放在公共区域
类中存储的只有成员变量
类内部没有成员变量的,只有成员函数或者什么都没有默认给一个字节用于对象占位标识,表示存在 

class A
{
public:void Print(){cout << "void Print()" << endl;}private:char _a;int _b;double _c;
};class B
{
public:void Print(){cout << "void Print()" << endl;}
};class C
{};class D
{
public:void Print(){cout << "void Print()" << endl;}
private:A _d;int _e;
};int main()
{// 实例化A a;B b;C c;D d;// 输出大小cout << sizeof(a) << endl;cout << sizeof(b) << endl;cout << sizeof(c) << endl;cout << sizeof(d) << endl;return 0;
}

 

 3.  this指针:

不存放在类,存放在栈,有些编译器也存放在寄存器中

class Date
{
public:/*void Init(Date* this, int year = 1949, int month = 1, int day = 1){this->_year = year;this->_month = month;this->_day = day;}*/void Init(int year = 1949, int month = 1, int day = 1){_year = year;_month = month;_day = day;}/*void Print(){cout << this->_year << "/" << this->_month << "/" << this->_day << endl;}*/void Print(){cout << _year << "/" << _month << "/" << _day << endl;}
private:int _year;int _month;int _day;
};int main()
{// 我们定义两个对象进行初始化Date d1;Date d2;d1.Init(2024, 7, 11);d2.Init(2024, 8, 1);d1.Print();d2.Print();// 为什么调用同一个函数,但是却给不同对象初始化不同值,这边也没传地址啊?// 其实默认传了地址,并且使用this指针对不同的对象进行了初始化// 但是this指针不可以显示成为参数,可以在函数内部显示使用和返回return 0;
}

考察理解this指针的题目 

class A
{
public:void Print(){cout << "void Print()" << endl;}
private:int _a;
};class B
{
public:void Print(){cout << "void Print()" << endl;cout << this->_a << endl;}
private:int _a;
};int main()
{A* a = nullptr;a->Print();B* b = nullptr;b->Print();// 以上两个程序语句分别是1.报错,2.运行崩溃,3.成功运行?return 0;
}

 类A只是传过去nullptr但是this没有进行解引用和访问操作所以程序成功运行。

类B传过去nullptr并且进行了访问操作所以程序崩溃。

4.  类的默认成员函数 

什么是默认成员函数,简单说我们不去实现,编译器也会默认生成这些成员函数 

 默认构造函数

 下面以栈类介绍类的默认函数

 1.构造函数 


 函数名与类名一样,无返回值
 全缺省构造函数
 我们不自己实现构造函数,编译器会默认生成一个无参构造函数,这个函数对内置类型不做处理,对自定义类型会去调用他们的构造函数
 无参构造函数,全缺省构造函数,编译器默认生成的无参构造函数都可以称作为默认构造,不传参即可调用的构造为默认构造
 无参构造函数,全缺省构造函数,编译器默认生成的无参构造函数三者只能存在一个
 相当于Stack中的Init

class Stack
{
public:// 无参构造函数/*Stack(){cout << "Stack():无参构造" << endl;_array = (int*)malloc(sizeof(int) * 4);if (nullptr == _array){perror("malloc fail!");exit(-1);}_capacity = 4;_size = 0;}*/// 全缺省构造函数Stack(int n = 4){cout << "Stack():全缺省构造函数" << endl;_array = (int*)malloc(sizeof(int) * n);if (nullptr == _array){perror("malloc fail!");exit(-1);}_capacity = n;_size = 0;}
private:int* _array;int _capacity;int _size;
};int main()
{Stack st;return 0;
}

  2.析构函数


 函数名与类名一样,但是需要在最前面加上~取反符号,无返回值
 析构函数我们不去实现编译器也会自动默认生成,
 对于动态内存申请的空间我们需要自己实现析构函数手动释放
 对于没有动态申请的类,我们不用实现析构函数,编译器默认生成的析构函数即可完成

// 析构函数
~Stack()
{cout << "~Stack()::析构函数" << endl;free(_array);_array = nullptr;_capacity = _size = 0;
}

 3.拷贝构造函数


 拷贝构造函数是构造函数的重载,函数一致,参数不同
 对于表面的值拷贝属于浅拷贝,我们不用实现,编译器自动生成的即可
 对于像栈一类的拷贝属于深拷贝,我们需要自己实现,另外开辟空间,将值拷贝到新的空间上 

	// 拷贝构造函数Stack(const Stack& s) // 使用const修饰放在修改来源{cout << "Stack(const Stack& s)::拷贝构造函数" << endl;_array = (int*)malloc(sizeof(int) * s._capacity);if (nullptr == _array){perror("malloc fail!");exit(-1);}memcpy(_array, s._array, sizeof(int) * s._capacity);_capacity = s._capacity;_size = s._size;}

4. 赋值运算符重载 

1. 运算符重载

• 当运算符被⽤于类类型的对象时,C++语⾔允许我们通过运算符重载的形式指定新的含义。C++规定类类型对象使⽤运算符时,必须转换成调⽤对应运算符重载,若没有对应的运算符重载,则会编译报错。

• 运算符重载是具有特名字的函数,他的名字是由operator和后⾯要定义的运算符共同构成。和其他函数⼀样,它也具有其返回类型和参数列表以及函数体。

• 重载运算符函数的参数个数和该运算符作⽤的运算对象数量⼀样多。⼀元运算符有⼀个参数,⼆元运算符有两个参数,⼆元运算符的左侧运算对象传给第⼀个参数,右侧运算对象传给第⼆个参数。

• 如果⼀个重载运算符函数是成员函数,则它的第⼀个运算对象默认传给隐式的this指针,因此运算符重载作为成员函数时,参数⽐运算对象少⼀个。

• 运算符重载以后,其优先级和结合性与对应的内置类型运算符保持⼀致。

• 不能通过连接语法中没有的符号来创建新的操作符:⽐如operator@

.*    ::    sizeof     ?:     .

• 注意以上5个运算符不能重载。

• 重载操作符⾄少有⼀个类类型参数,不能通过运算符重载改变内置类型对象的含义,如: int

operator+(int x, int y)

• ⼀个类需要重载哪些运算符,是看哪些运算符重载后有意义,⽐如Date类重载operator-就有意义,但是重载operator+就没有意义。

 • 重载++运算符时,有前置++和后置++,运算符重载函数名都是operator++,⽆法很好的区分。C++规定,后置++重载时,增加⼀个int形参,跟前置++构成函数重载,⽅便区分。 

5. 日期类实现:

在日期类实现当中,我们会去应用类的默认构造函数,以及运算符重载

Date.h 

#pragma once
#include <iostream>
#include <stdbool.h>using namespace std;class Date
{
public:// 日期类默认构造函数Date(int year = 1949, int month = 10, int day = 1);// 没有资源申请不用实现析构函数// ~Date();// 打印日期void Print();// 日期类拷贝构造函数Date(const Date& d);// 获取某日期的天数int GetMonthDay(const Date& d){static int arr_day[13] = { -1,31,28,31,30,31,30,31,31,30,31,30,31 };if (d._month == 2 && ((d._year % 4 == 0) && (d._year % 100 != 0) || (d._year % 400 == 0))){return 29;}return arr_day[d._month];}// 运算符重载// d1 = d2 , return Date&类型Date& operator=(const Date& d);// d1+=day , return Date&类型Date& operator+=(int day);// d1+day, return Date类型Date operator+(int day);// d1-=day , return Date&类型Date& operator-=(int day);// d1-day, return Date类型Date operator-(int day);// d1 == d2 , return bool类型bool operator==(const Date& d);// d1 != d2 , return bool类型bool operator!=(const Date& d);// 前置++ 后置++// ++d1 -> d1.operator++(&d);Date& operator++();// d1++ -> d1.operator++(&d, 0);Date operator++(int);// 比较大小// >bool operator>(const Date& d);// <bool operator<(const Date& d);// >=bool operator>=(const Date& d);// <=bool operator<=(const Date& d);// 日期-日期 , return int -> 天数int operator-(const Date& d);private:// 年/月/日int _year;int _month;int _day;
};

Date.cpp

#include "Date.h"// 日期类默认构造函数
Date::Date(int year, int month, int day) // 这边缺省参数声明和定义只需要在声明时显示写出即可
{cout << "日期类默认构造函数" << endl;_year = year;_month = month;_day = day;
}// 打印日期
void Date::Print()
{cout << _year << "/" << _month << "/" << _day << endl;
}// 日期类拷贝构造函数
Date::Date(const Date& d)
{cout << "日期类拷贝构造函数" << endl;_year = d._year;_month = d._month;_day = d._day;
}// 运算符重载// d1 = d2 , return Date类型
Date& Date::operator=(const Date& d)
{cout << "Date& Date::operator=(const Date& d)" << endl;_year = d._year;_month = d._month;_day = d._day;return *this;
}// d1+=day , return Date&类型
Date& Date::operator+=(int day)
{if (day < 0){return *this -= (-day);}_day += day;while (_day > GetMonthDay(*this)){_day -= GetMonthDay(*this);++_month;if (_month == 13){++_year;_month = 1;}}return *this;
}// d1+day, return Date类型
Date Date::operator+(int day)
{Date tmp = *this;tmp += day;return tmp;
}// d1-=day , return Date&类型
Date& Date::operator-=(int day)
{if (day < 0){return *this += (-day);}_day -= day;while (_day <= 0){--_month;if (_month == 0){--_year;_month = 12;}_day += GetMonthDay(*this);}return *this;
}// d1-day, return Date类型
Date Date::operator-(int day)
{Date tmp = *this;tmp -= day;return tmp;
}// 前置++ 后置++// ++d1 -> d1.operator++(&d);
Date& Date::operator++()
{*this += 1;return *this;
}// d1++ -> d1.operator++(&d, 0);
Date Date::operator++(int)
{Date ret(*this);*this += 1;return ret;
}// d1 == d2 , return bool类型
bool Date::operator==(const Date& d)
{return _year == d._year && _month == d._month && _day == d._day;
}// d1 != d2 , return bool类型
bool Date::operator!=(const Date& d)
{return !(*this == d);
}// 比较大小// >
bool Date::operator>(const Date& d)
{if (_year > d._year){return true;}else if (_year == d._year){if (_month > d._month){return true;}else if (_month == d._month){if (_day > d._day){return true;}else {return false;}}else {return false;}}else {return false;}
}// <
bool Date::operator<(const Date& d)
{return !(*this >= d);
}// >=
bool Date::operator>=(const Date& d)
{return *this > d || *this == d;
}// <=
bool Date::operator<=(const Date& d)
{return !(*this > d);
}// 日期-日期 , return int -> 天数
int Date::operator-(const Date& d)
{int flag = 1;Date max = *this;Date min = d;// 假设法if (*this < d){min = *this;max = d;flag = -1;}int day = 0;while (min < max){++min;++day;}return day * flag;}

Text.cpp 

#include "Date.h"void Text01()
{// 测试默认构造//Date d1;//d1.Print();//Date d2(2024, 7, 21);//d2.Print();// 测试拷贝构造函数//Date d1(2024, 7, 21);//d1.Print();//Date d2(d1);//d2.Print();//Date d2 = d1;//d2.Print();// 测试运算符重载(=)//Date d1(2024, 7, 21);//Date d2, d3;//d2 = d3 = d1;//d1.Print();//d2.Print();//d3.Print();// 测试运算符重载(+=)//Date d1(2024, 7, 21);//d1 += 50000;//d1.Print();// 测试运算符重载(+)//Date d1(2024, 7, 21);//Date d2(d1 + 50000);//d1.Print();//d2.Print();// 测试运算符重载(-=)//Date d1(2024, 7, 21);//d1 -= 50000;//d1.Print();// 测试运算符重载(-)//Date d1(2024, 7, 21);//Date d2(d1 - 50000);//d1.Print();//d2.Print();// 测试运算符重载(前置++)/*Date d1(2024, 7, 31);Date d2(++d1);d1.Print();d2.Print();*/// 测试运算符重载(后置++)//Date d1(2024, 7, 31);//Date d2(d1++);//d1.Print();//d2.Print();// 测试运算符重载(==)//Date d1(2024, 7, 31);//Date d2(2024, 7, 31);//bool ret = (d1 == d2);//cout << ret << endl;// 测试运算符重载(!=)//Date d1(2024, 7, 31);//Date d2(2024, 7, 21);//bool ret = (d1 != d2);//cout << ret << endl;// 测试运算符重载(>)//Date d1(2024, 7, 31);//Date d2(2024, 7, 21);//bool ret = (d1 > d2);//cout << ret << endl;// 测试运算符重载(>=)//Date d1(2024, 7, 31);//Date d2(2024, 7, 31);//bool ret = (d1 >= d2);//cout << ret << endl;// 测试运算符重载(<)//Date d1(2024, 7, 31);//Date d2(2024, 7, 31);//bool ret = (d1 < d2);//cout << ret << endl;// 测试运算符重载(<=)//Date d1(2024, 7, 31);//Date d2(2024, 7, 31);//bool ret = (d1 <= d2);//cout << ret << endl;// 测试运算符重载(日期-日期)//Date d1(1958, 7, 11);//Date d2(2024, 7, 21);//cout << d1 - d2 << endl;}int main()
{Text01();return 0;
}

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/48941.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【CPP】CPP的内存管理

目录 10 C/C内存管理10.1 内存分布10.2 C的动态内存管理10.3 C的内存管理10.4 new失败的检测10.5 operator new与operator delete函数10.5 new与malloc()的区别,delete与free()的区别10.6 定位new表达式 这里是oldking呐呐,感谢阅读口牙!先赞后看,养成习惯! 个人主页:oldking呐…

编程中的智慧四:设计模式总览

前面三篇我们通过从一些零散的例子&#xff0c;和简单应用来模糊的感受了下设计模式在编程中的智慧&#xff0c;从现在开始正式进入设计模式介绍&#xff0c;本篇将从设计模式的7大原则、设计模式的三大类型、与23种设计模式的进行总结&#xff0c;和描述具体意义。 设计模式体…

使用Diffusion Models进行街景视频生成

Diffusion Models专栏文章汇总&#xff1a;入门与实战 前言&#xff1a;街景图生成相当有挑战性&#xff0c;目前的文本到视频的方法仅限于生成有限范围的场景的短视频&#xff0c;文本到3D的方法可以生成单独的对象但不是整个城市。除此之外街景图对一致性的要求相当高&#x…

数据库基础与安装MYSQL数据库

一、数据库管理系统DBMS 数据库技术是计算机科学的核心技术之一&#xff0c;具有完备的理论基础。使用数据库可以高效且条理分明地存储数据&#xff0c;使人们能够更加迅速、方便地管理数据 1.可以结构化存储大量的数据信息&#xff0c;方便用户进行有效的检索和访问 2.可以…

目前航空航天设备怎么减重设计

目前航空航天设备怎么减重设计 1.使用轻质高强度材料1.1复合材料1.2金属基复合材料1.3陶瓷基复合材料1.4功能梯度材料和蜂窝材料 2.结构优化设计2.1拓扑优化2.2仿生学设计 3.部件和系统轻量化3.1机载娱乐系统3.2航空线缆3.3激光焊接技术 4.发动机和推进系统的优化4.1轻量化发动…

python爬虫Selenium模块及测试案例详解

什么是selenium&#xff1f; &#xff08;1&#xff09;Selenium是一个用于Web应用程序测试的工具。 &#xff08;2&#xff09;Selenium 测试直接运行在浏览器中&#xff0c;就像真正的用户在操作一样。 &#xff08;3&#xff09;支持通过各种driver&#xff08;FirfoxDrive…

python gradio 的输出展示组件

HTML&#xff1a;展示HTML内容&#xff0c;适用于富文本或网页布局。JSON&#xff1a;以JSON格式展示数据&#xff0c;便于查看结构化数据。KeyValues&#xff1a;以键值对形式展示数据。Label&#xff1a;展示文本标签&#xff0c;适用于简单的文本输出。Markdown&#xff1a;…

JavaScript之WebAPIs-BOM

目录 BOM操作浏览器一、Window对象1.1 BOM&#xff08;浏览器对象模型&#xff09;1.2 定时器-延时函数1.3 js执行机制1.4 location对象1.5 navigator对象1.6 history对象 二、本地存储三、补充数组中的map方法数组中的join方法数组中的forEach方法(重点)数组中的filter方法(重…

Linux——Centos系统安装(动图演示)

一、创建虚拟机并做相应配置 打开VMware Workstation&#xff0c;选择创建新的虚拟机&#xff1b; 1、选择自定义选项&#xff1a;点击下一步 2、选择虚拟机硬件兼容性&#xff1a;直接下一步就行了&#xff1b;点击下一步 3、安装客户机操作系统&#xff1a;这里我们选择稍后安…

C++对象模型之绕过private权限修饰符

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、C对象模型二、演示1.类层次2.内存排列 总结 前言 咱们都知道C语言在创建类的时候data member&#xff08;数据成员&#xff09;和fuchtion member&#xf…

Linux操作系统的有关常用的命令

1.linux系统的概述 1.1 什么是Linux系统? Linux&#xff0c;全称GNU/Linux&#xff0c;是一种免费使用和自由传播的类UNIX操作系统&#xff0c;其内核由林纳斯本纳第克特托瓦 兹&#xff08;Linus Benedict Torvalds&#xff09;于1991年10月5日首次发布&#xff0c;它主要受…

LVGL项目实战之UI规划

LVGL项目实战之UI规划 ** 实物购买&#xff1a;TB 南山府嵌入式 ** 我们在在做项目之前&#xff0c;先需要确定项目的需求以及可能实现的功能&#xff0c;我们只有确定这些才能够对整体的框架进行把握。 本小结就说一下我们这个项目的一个整体的框架结构以及功能。 1-硬件构…

C语言实现二叉树以及二叉树的详细介绍

目录 1.树概念及结构 1.1树的概念 1.2树的相关概念 1.3树的表示 2.二叉树概念及结构 2.1二叉树的概念 2.2特殊的二叉树 2.3二叉树的性质 2.4二叉树的存储结构 3.二叉树顺序结构--特殊的二叉树--堆及其实现 3.1堆的概念及结构 3.2堆的实现 3.2.1堆的结构 3.2.2堆…

《JavaSE》---21.<简单认识Java的集合框架包装类泛型>

目录 前言 一、什么是集合框架 1.1类和接口总览 二、集合框架的重要性 2.1 开发中的使用 2.2 笔试及面试题 三、背后所涉及的数据结构 3.1 什么是数据结构 3.2 容器背后对应的数据结构 四、包装类 4.1 基本数据类型和对应的包装类 4.2 装箱和拆箱 1.最初的写法 2.…

org.springframework.context.ApplicationContext发送消息

1、创建消息的实体类 package com.demo;/*** 监听的实体类**/ public class EventMessage {private String name;public EventMessage(String name) {this.name name;}public String getName() {return name;}public void setName(String name) {this.name name;} }2、创建消…

【Linux】如何使用docker快速部署Stirling-PDF并实现远程处理本地文档

文章目录 前言1. 安装Docker2. 本地安装部署StirlingPDF3. Stirling-PDF功能介绍4. 安装cpolar内网穿透5. 固定Stirling-PDF公网地址 前言 本篇文章我们将在Linux上使用Docker在本地部署一个开源的PDF工具——Stirling PDF&#xff0c;并且结合cpolar的内网穿透实现公网随时随…

Java 集合框架:Java 中的双端队列 ArrayDeque 的实现

大家好&#xff0c;我是栗筝i&#xff0c;这篇文章是我的 “栗筝i 的 Java 技术栈” 专栏的第 019 篇文章&#xff0c;在 “栗筝i 的 Java 技术栈” 这个专栏中我会持续为大家更新 Java 技术相关全套技术栈内容。专栏的主要目标是已经有一定 Java 开发经验&#xff0c;并希望进…

共享模型之无锁

一、问题提出 1.1 需求描述 有如下的需求&#xff0c;需要保证 account.withdraw() 取款方法的线程安全&#xff0c;代码如下&#xff1a; interface Account {// 获取余额Integer getBalance();// 取款void withdraw(Integer amount);/*** 方法内会启动 1000 个线程&#xf…

GraphPad prism处理cck-8获得ic50

C组为空白对照组&#xff0c;a组为dmso对照组&#xff0c;b组为细胞加药组&#xff0c;八个梯度的药物浓度 一、数据转化 首先&#xff0c;打开软件&#xff0c;选项中选择x的第一项&#xff0c;y的第二项&#xff0c;单一药物浓度设定了几个孔就选几 把自己的药物浓度直接复制…

ubuntu22安装拼音输入法

专栏总目录 一、安装命令&#xff1a; sudo apt update sudo apt install fcitx sudo apt install fcitx-pinyin 二、切换输入法