类和对象-C++运算符重载

#include <iostream>
#include <string>
using namespace std;class Person
{
public:Person(int age){m_Age=new int (age);}~Person(){if(m_Age!=NULL){delete m_Age;m_Age=NULL;}}//重载 赋值运算符Person& operator =(Person &p){//编译器提供深拷贝//m_Age=p.m_Age;//应该先判断是否有属性在堆区,如果有先释放干净,然后再深拷贝if(m_Age!=NULL){delete m_Age;m_Age=NULL;}//深拷贝m_Age=new int(*p.m_Age);return *this;}int *m_Age;
};void test01()
{Person p1(18);Person p2(20);Person p3(30);p3=p2=p1;//赋值操作cout<<"p1的年龄为: "<<*p1.m_Age<<endl;cout<<"p2的年龄为: "<<*p2.m_Age<<endl;cout<<"p3的年龄为: "<<*p3.m_Age<<endl;
}int main()
{test01();/*int a=10;int b=10;int c=10;c=b=a;//内置函数支持连等式cout<<"a= "<<a<<endl;cout<<"b= "<<b<<endl;cout<<"c= "<<c<<endl;*/system("pause");return 0;
}

师从黑马

运算符重载

概念:对已有的运算符重新进行定义,赋予另一种功能,以适应不同的数据类型

加号运算符重载

作用:实现两个自定义数据类型相加的运算

#include <iostream>
#include <string>
using namespace std;class Person
{
public://1、成员函数重载+号/*  Person operator+(Person &p){Person temp;temp.m_A=this->m_A+p.m_A;temp.m_B=this->m_B+p.m_B;return temp;}
*/int m_A;int m_B;
};// 2、全局函数重载+号
Person operator+(Person& p1, Person& p2)
{Person temp;temp.m_A = p1.m_A + p2.m_A;temp.m_B = p1.m_B + p2.m_B;return temp;
}//函数重载的版本
Person operator+(Person &p1,int num)
{Person temp;temp.m_A = p1.m_A + num;temp.m_B = p1.m_B + num;return temp;
}void test01()
{Person p1;p1.m_A = 10;p1.m_B = 10;Person p2;p2.m_A = 10;p2.m_B = 10;//成员函数重载本质调用// Person p3=p1.operator+(p2);//全局函数的本质调用//Person p3=operator+(p1,p2);//简化Person p3 = p1 + p2;//运算符重载,也可以发生函数重载Person p4=p1+100;//Person +intcout << "p3.m_A= " << p3.m_A << endl;cout << "p3.m_B= " << p3.m_B << endl;cout << "p4.m_A= " << p4.m_A << endl;cout << "p3.m_B= " << p4.m_B << endl;
}int main()
{test01();system("pause");return 0;
}

对于内置的数据类型的表达式的运算符是不可能改变的

左移运算符重载

#include <iostream>
#include <string>
using namespace std;class Person
{friend ostream &operator<<(ostream &ut,Person &p);//利用成员函数重载 左移运算符   p.operator<<(cout)  简化版本 p<<cout//不会利用成员函数重载<<运算符,因为无法实现cout在左侧// void operator<<(cout)//{//}
public:Person(int a,int b){m_A=a;m_B=b;}private:int m_A;int m_B;
};//只能利用全局函数重载左移运算符
ostream &operator<<(ostream &ut,Person &p)//本质 operator<<(cout,p)简化cout<<P
{ut<<"m_A="<<p.m_A<<"m_B= "<<p.m_B;
}
void test01()
{Person p(10,10);cout<<p<<endl;
}int main()
{test01();system("pause");return 0;
}

递增运算符重载

作用:通过递增运算符重载,实现自己的整型数据

#include <iostream>
#include <string>
using namespace std;//自定义整型
class MyInteger
{friend ostream& operator<<(ostream& cout,MyInteger myint);
public:MyInteger(){m_Num=0;}//重载前置++运算符   返回引用为了一直对一个数据进行递增操作MyInteger& operator++(){//先进行++运算m_Num++;//再将自身做一个返回return *this;}//重载后置++运算符MyInteger operator++(int)//int 代表占位参数,可以用于区分前置递增和后置递增{//先 记录当时结果MyInteger temp=*this;//后 递增m_Num++;//最后将记录结果做返回return temp;}private:int m_Num;
};//重载<<运算符
ostream& operator<<(ostream& cout,MyInteger myint)
{cout<<myint.m_Num;return cout;
}
void test01()
{MyInteger myint;cout<<++myint<<endl;
}void test02()
{MyInteger myint;cout<<myint++<<endl;cout<<myint<<endl;}int main()
{test01();test02();system("pause");return 0;
}

前置递增返回的是引用,后置递增返回的是值

递减运算符重载

#include <iostream>
#include <string>
using namespace std;//自定义整型
class MyInteger
{friend ostream& operator<<(ostream& cout,MyInteger myint);
public:MyInteger(){m_Num=0;}//前置递减MyInteger& operator--(){m_Num--;return *this;}//后置递减MyInteger operator--(int){MyInteger temp=*this;m_Num--;return temp;}private:int m_Num;};
//重载<<运算符
ostream& operator<<(ostream& cout,MyInteger myint)
{cout<<myint.m_Num;return cout;
}
void test01()
{MyInteger myint;cout<<--myint<<endl;
}
void test02()
{MyInteger myint;cout<<myint--<<endl;cout<<myint<<endl;}int main()
{test01();test02();system("pause");return 0;
}

赋值运算符重载

C++编译器至少给一个类添加4个函数

1、默认构造函数  2、默认析构函数  3、默认析构函数,对属性进行值拷贝

4、赋值运算符operator=,对属性进行值拷贝

如果类中有属性指向堆区,做赋值操作时也会出现深浅拷贝的问题

关系运算符重载

作用:重载关系运算符,可以让两个自定义类型对象进行对比操作

#include <iostream>
#include <string>
using namespace std;class Person
{
public:Person(string name,int age){m_Name=name;m_Age=age;}//重载==bool operator==(Person &p){if(this->m_Name==p.m_Name&&this->m_Age==p.m_Age){return true;}return false;}bool operator!=(Person &p){if(this->m_Name==p.m_Name&&this->m_Age==p.m_Age){return false;}return true;}string m_Name;int m_Age;};void test01()
{Person p1("Tom",18);Person p2("Terry",18);if(p1==p2){cout<<"p1 和p2是相等的! "<<endl;}else{cout<<"p1和p2是不相等的!"<<endl;}if(p1!=p2){cout<<"p1和p2是不相等的!"<<endl;}else{cout<<"p1 和p2是相等的! "<<endl;}}
int main()
{test01();system("pause");return 0;
}

函数调用运算符重载

函数调用运算符()也可以重载

由于重载后使用的方式非常像函数的调用,因此称为仿函数

仿函数没有固定的写法,非常灵活

#include <iostream>
#include <string>
using namespace std;class MyPrint
{
public://重载函数调用运算符void operator()(string test){cout<<test<<endl;}
};void MyPrint02(string test)
{cout<<test<<endl;
}void test01()
{MyPrint myprint;myprint("hello world");//由于重载后使用的方式非常像函数的调用,因此称为仿函数MyPrint02("hello world");}//仿函数没有固定的写法,非常灵活//加法类
class MyAdd
{
public:int operator()(int num1,int num2){return num1+num2;}
};void test02()
{MyAdd myadd;int ret =myadd(100,100);cout<<"ret="<<ret<<endl;//匿名函数对象cout<<MyAdd()(100,100)<<endl;
}int main()
{test01();test02();system("pause");return 0;
}

若有侵权,请联系作者

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

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

相关文章

嵌入式软件开发工程师如何提高C语言编码技能?

嵌入式软件开发工程师如何提高C语言编码技能&#xff1f; 在开始前我分享下我的经历&#xff0c;我刚入行时遇到一个好公司和师父&#xff0c;给了我机会&#xff0c;一年时间从3k薪资涨到18k的&#xff0c; 我师父给了一些 电气工程师学习方法和资料&#xff0c;让我不断提升…

openCV xmake debug失效 release可以使用

在使用xmake构建一个项目时&#xff0c;添加openCV库&#xff0c;调用 imread函数时&#xff0c;debug函数失效&#xff0c; release可以使用&#xff0c;最后发现是xmake.lua写的有问题 option("OpenCV4.6.0")set_showmenu(true) set_default(true) set_category(&…

Vue组件数据双向绑定 v-model

v-model可以在组件上使用以实现双向绑定。 Vue 3.4之前使用方式 1、props & emit 父组件 <template><Child v-model"name"v-model:first-name"firstN"v-model:last-name"last"/> </template>子组件 <script setup…

MySQL运维实战之备份和恢复(8.6)将数据库恢复到指定时间点

作者&#xff1a;俊达 恢复到指定时间点 使用全量备份和增量备份文件&#xff0c;都只能将数据库恢复到备份结束的时间。通过binlog&#xff0c;可以将数据库恢复到任意时间点&#xff08;前提是备份和该时间点之间的binlog都存在&#xff09;。 找到时间点对应的binlog 恢…

vSphere 8考试认证题库 2024最新(VCP 8.0版本)

VMware VCP-DCV&#xff08;2V0-21.23&#xff09;认证考试题库&#xff0c;已全部更新&#xff0c;答案已经完成校对&#xff0c;完整题库请扫描上方二维码访问。正常考可以考到450分以上&#xff08;满分500分&#xff0c;300分通过&#xff09; An administrator is tasked …

echarts 模拟时间轴播放效果

使用echarts柱状图模拟时间轴播放控制。开始/暂停/快进/慢进/点选 代码可直接放echart官方示例执行 let start new Date(2024-01-01); let end new Date(2024-01-10); let diff end - start; let dotLen 200;let data [start, end]; option {color: [#3398DB],tooltip: …

论文解读:Rectifying the Shortcut Learning of Background for Few-Shot Learning

文章汇总 问题&动机&解决方法 图像背景是一种有害知识的来源&#xff0c;这是少数镜头学习模型容易吸收的(问题) 通过在训练和评估中提取图像中的前景目标而不需要任何额外的监督来解决这个问题(动机) 在训练和评估时将模型的注意力吸引到图像前景上(方法) 摘要 …

Maven模块化最佳实践

一&#xff0c;模块化的原因及意义 模块化是一种将大型的软件系统拆分成相互独立的模块的方法。具有以下优势&#xff1a; 代码复用&#xff1a;不同的模块可以共享相同的代码。这样可以避免重复编写相同的代码&#xff0c;提高开发效率。 模块独立性&#xff1a;每个模块都可…

2023年第三届中国高校大数据挑战赛(第二场)A题思路

竞赛时间 &#xff08;1&#xff09;报名时间&#xff1a;即日起至2024年3月8日 &#xff08;2&#xff09;比赛时间&#xff1a;2024年3月9日8:00至2024年3月12日20:00 &#xff08;3&#xff09;成绩公布&#xff1a;2024年4月30日前 赛题方向&#xff1a;大数据统计分析 …

Day25:安全开发-PHP应用文件管理模块包含上传遍历写入删除下载安全

目录 PHP文件操作安全 文件包含 文件删除 文件编辑 文件下载 云产品OSS存储对象去存储文件(泄漏安全) 思维导图 PHP知识点 功能&#xff1a;新闻列表&#xff0c;会员中心&#xff0c;资源下载&#xff0c;留言版&#xff0c;后台模块&#xff0c;模版引用&#xff0c;框…

关于出国留学和考研比较----以本人双非跨考计算机为例

文章目录 中心论点国内就业现状勿让旧认知害了自己那出国留学真的一无是处了吗?1. 藤校仍旧是具有极高价值2. 时间成本低3. 研究生一定比单纯的本科找工作强!4. 很多人说出国读博好,可以无脑入,真是这样吗? 中心论点 如果在选择出国留学还是国内考研的最终核心诉求都是有更好…

Unity笔记:协程

协程 协程有IEnumerator类型返回值&#xff0c;所以总要有至少一个yield return xxx 基础入门直接看这个就够了&#xff1a;gamedevbeginner - Unity 中的协程&#xff08;如何以及何时使用它们&#xff09; 考虑使用协程的典型情况&#xff1a; 将对象移动到某个位置。为对象…

Spring Boot与Netty的完美结合:打造高性能网络通信

Spring Boot与Netty的完美结合&#xff1a;打造高性能网络通信 引言 在Java生态中&#xff0c;Spring Boot以其快速开发、简洁配置和丰富的生态支持赢得了众多开发者的喜爱。然而&#xff0c;当涉及到高性能、低延迟的网络通信时&#xff0c;传统的Servlet容器&#xff08;如…

向量的内积、长度、正交性

目录 向量的内积 向量的长度&#xff08;模&#xff09; 标准正交基 标准正交化 正交矩阵 向量的内积 向量的长度&#xff08;模&#xff09; 标准正交基 标准正交化 正交矩阵

JavaWeb——014SpringBoot原理(配置优先级、Bean管理、SpringBoot原理)

SpingBoot原理 目录 SpingBoot原理1. 配置优先级2. Bean管理2.1 获取Bean2.2 Bean作用域2.3 第三方Bean 3. SpringBoot原理3.1 起步依赖3.2 自动配置3.2.1 概述3.2.2 常见方案3.2.2.1 概述3.2.2.2 方案一3.2.2.3 方案二 3.2.3 原理分析3.2.3.1 源码跟踪3.2.3.2 Conditional 3.2…

详解深度学习中的教师-学生模型(Teacher- Student Model)

文章目录 基本流程训练方法分类1. 软标签&#xff08;Soft Labels&#xff09;软化概率分布的具体步骤软化有什么好处&#xff1f; 2. 特征匹配&#xff08;Feature Matching&#xff09;3. 注意力转移&#xff08;Attention Transfer&#xff09;4. 知识图谱或规则迁移5. 隐空…

超市小程序有哪些功能 怎么制作

超市小程序是非常有用的工具&#xff0c;可以帮助超市提升用户体验&#xff0c;提高销售额。下面我们来看一下超市小程序可以具备哪些功能&#xff0c;以及如何制作一个高效的超市小程序。 1. **商品展示与搜索功能**&#xff1a;用户可以浏览超市的商品信息&#xff0c;包括价…

一篇搞定分布式缓存

缓存雪崩 缓存雪崩我们可以简单的理解为&#xff1a;由于原有缓存失效&#xff0c;新缓存未到期间所有原本应该访问缓存的请求都 去查询数据库了&#xff0c;而对数据库 CPU 和内存造成巨大压力&#xff0c;严重的会造成数据库宕机。从而形成一系列 连锁反应&#xff0c;造成整…

同等学力申硕专业介绍——管理学硕士

同等学力申硕的专业很多。 目前有十三大门类&#xff0c;分别是医学、法学、管理学、工学、教育学、经济学、艺术学、文学、历史学、理学、哲学、农学、军事学等&#xff0c;每个大门类中都有很多的细分专业。 今天为大家介绍同等学力申硕专业——管理学。 专业介绍 管理学是…

maven 包管理平台-07-plugins 常见插件介绍

拓展阅读 maven 包管理平台-01-maven 入门介绍 Maven、Gradle、Ant、Ivy、Bazel 和 SBT 的详细对比表格 maven 包管理平台-02-windows 安装配置 mac 安装配置 maven 包管理平台-03-maven project maven 项目的创建入门 maven 包管理平台-04-maven archetype 项目原型 ma…