C++练级之路——类和对象(中二)

1、运算符重载

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

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

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

注意:

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

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

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

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

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

//运算符重载
bool operator<(const Date& d);
bool operator==(const Date& d);
bool operator<=(const Date& d);
bool operator>(const Date& d);
bool operator>=(const Date& d);
bool operator!=(const Date& 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)return _day < d._day;}return false;
}bool Date::operator==(const Date& d)
{return _year == d._year&& _month == d._month&& _day == d._day;
}bool Date::operator<=(const Date& d)
{return *this < d && *this == d;
}
bool Date::operator>(const Date& d)
{return !(*this <= d);
}
bool Date::operator>=(const Date& d)
{return !(*this <d);
}
bool Date::operator!=(const Date& d)
{return !(*this == d);
}

        当我们重载了  <  和 ==  时,就可以复用这两个运算符,重载<=  >   >=   != ,更加方便了。

2、赋值运算符重载 

1、赋值运算符重载格式

1.参数类型:const  参数名&,传递引用可以提高传参效率,(不用再调用拷贝构造了);

2.返回值类型:参数名&  返回引用可以提高返回的效率,有返回值的目的是为了支持连续赋值;

3.检测是否自己给自己赋值

4.返回trhis,要符合连续赋值的含义;

//声明
Date& operator=(const Date& d);//定义
Date& Date:: operator=(const Date& d)
{_year = d._year;_month = d._month;_day = d._day;return *this;
}

 2、赋值运算符只能重载成成员函数,不能重载成全局函数

因为赋值运算符第一个参数是this指针,重载成全局函数,就需要传this指针,而当类里面没有显式定义赋值运算符时,编译器会自动生成一个默认的。此时就会和类外的赋值运算符重载形成冲突,所以赋值运算符只能是成员函数。

3、用户没有显式实现时,编译器会自动生成一个默认的赋值操作符重载,以值的方式逐字节拷贝

注意:内置类型成员变量是直接赋值的,而自定义成员变量需要调用对应类的赋值运算符重载完成赋值,如果自定义类中没有显式实现赋值运算符重载,编译器也会默认生成赋值重载;

class Time
{
public:Time(){_hour = 1;_minute = 1;_second = 1;}//这个赋值运算符重载写不写都可以,不写的话编译器也会自动生成/*Time& operator=(const Time& t){if (this != &t){_hour = t._hour;_minute = t._minute;_second = t._second;}return *this;}*///private:int _hour;int _minute;int _second;
};class Date1
{
public:void print(){cout << _year << "-" << _month << "-" << _day << endl;}
private:// 基本类型(内置类型)int _year = 1970;int _month = 1;int _day = 1;// 自定义类型Time _t;
};
int main()
{Date1 d1;Date1 d2;d1 = d2;d1.print();d2.print();return 0;
}

但是,我们真的不需要自己写了吗?

不是的,如果类中涉及到资源管理,开辟空间的,就要自己实现赋值重载了,因为编译器自己实现的是浅拷贝,也就是值拷贝,不会额外开辟空间,所以我们自己写深拷贝,和拷贝构造,析构函数差不多

3、前置++和后置++重载

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

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

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

为了能够区分

C++规定:后置++重载时多增加一个Int 参数,但调用函数时,用户不用传递,编译器会自动传递,(问就是C++规定的)

后置++,要用值的方式返回,因为要在函数内创建一个临时对象tem来保存*this,然后*this++

然后返回tem,

//前置++
Date& Date::operator++()
{*this += 1;return *this;
}//后置++
//int 只是一个标志,代表他是后置的--,没有实际意义
Date Date::operator++(int)
{Date tem = *this;*this += 1;return tem;
}//前置--
Date& Date::operator--()
{*this -= 1;return *this;
}//后置--
Date Date::operator--(int)
{Date tem = *this;*this -= 1;return tem;
}

 4、const成员变量

将const修饰的成员函数成为“const成员函数”,,const修饰类成员函数,实际上是修饰该类成员函数隐函的 this 指针,表明在该成员函数中不能对类的成员进行修改。

class Date1
{
public:Date1(int year, int month, int day){_year = year;_month = month;_day = day;}void Print(){cout << "Print()" << endl;cout << "year:" << _year << endl;cout << "month:" << _month << endl;cout << "day:" << _day << endl << endl;}void Print() const{cout << "Print()const" << endl;cout << "year:" << _year << endl;cout << "month:" << _month << endl;cout << "day:" << _day << endl << endl;}
private:int _year; // 年int _month; // 月int _day; // 日
};
void Test()
{Date1 d1(2022, 1, 13);d1.Print();const Date1 d2(2022, 1, 13);d2.Print();
}int main()
{Test();return 0;
}

 注意:权限可以缩小,平移,但是不可以放大;

请思考下面的几个问题:

1. const 对象可以调用非 const 成员函数吗?
2. const 对象可以调用 const 成员函数吗?
3. const 成员函数内可以调用其它的非 const 成员函数吗?
4. const 成员函数内可以调用其它的 const 成员函数吗?

5、日期类的实现

        我们还可以重载流插入和流提取

流插入我们要要在类外实现,因为在类中实现,第一个参数是隐形的this指针,而我们希望第一个参数是ostream& out,那我们就定义在类外可以解决这个问题,但是定义在类外我们就无法访问类中的私有的成员变量,就用到了另一个办法,友元,友元的概念就是我是你的朋友,我可以访问你的元素,不管是共有还是私有,这里暂且了解一下,下节会讲;

下面来看日期类的实现,上面的运算符重载都会用到;

//Date.h
#pragma once
#include<iostream>
using namespace std;int is_year(int y);class Date
{friend ostream& operator<<(ostream& out, const Date& d);friend istream& operator>>(istream& in, Date& d);
public:Date(int year=1 ,int month=1, int day=1);Date(const Date& d);//在类里面定义的函数默认就内联函数int GetMonthDay(int y, int m){               static int months[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };if (m == 2)return months[m] + is_year(y);return months[m];}//日期+=天数Date& operator+=(int day);Date operator+(int day);Date& operator-=(int day);Date operator-(int day);//++和--Date& operator++();Date operator++(int);Date& operator--();Date operator--(int);//日期-日期int operator-(const Date& d);//运算符重载Date& operator=(const Date& d);bool operator<(const Date& d);bool operator==(const Date& d);bool operator<=(const Date& d);bool operator>(const Date& d);bool operator>=(const Date& d);bool operator!=(const Date& d);//流插入和流输出~Date();void print();private:int _year;int _month;int _day;
};ostream& operator<<(ostream& out, const Date& d);
istream& operator>>(istream& in,  Date& d);
//Date.cpp#include"Date.h"int is_year(int y)
{if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0)return 1;return 0;
}Date::Date(int year , int month , int day ){_year = year;_month = month;_day = day;}Date::Date(const Date& d){cout << "Date::Date(const Date& d)" << endl;_year = d._year;_month = d._month;_day = d._day;}Date& Date::operator+=(int day){_day += day;while (_day > GetMonthDay(_year, _month)){_day -= GetMonthDay(_year, _month);_month++;if (_month == 13){_year++;_month = 1;}}return *this;}Date Date::operator+(int day){Date tem = *this;tem += day;return tem;}Date& Date::operator-=(int day){_day -=day;while (_day < 0){_month--;if (_month == 0){_year--;_month = 12;}_day += GetMonthDay(_year, _month);}return *this;}Date Date::operator-(int day){Date tem = *this;tem -= day;return tem;}//前置++Date& Date::operator++(){*this += 1;return *this;}//后置++//int 只是一个标志,代表他是后置的--,没有实际意义Date Date::operator++(int){Date tem = *this;*this += 1;return tem;}//前置--Date& Date::operator--(){*this -= 1;return *this;}//后置--Date Date::operator--(int){Date tem = *this;*this -= 1;return tem;}//日期-日期int Date:: operator-(const Date& d){Date max = *this;Date min = d;int n = 0;int flag = 1;if (max < min){max = d;min = *this;flag = -1;}while (min!=max){++min;++ n;}return n*flag;                                                 }//赋值运算符重载Date& Date:: operator=(const Date& d){_year = d._year;_month = d._month;_day = d._day;return *this;}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)return _day < d._day;}return false;}bool Date::operator==(const Date& d){return _year == d._year&& _month == d._month&& _day == d._day;}bool Date::operator<=(const Date& d){return *this < d && *this == d;}bool Date::operator>(const Date& d){return !(*this <= d);}bool Date::operator>=(const Date& d){return !(*this <d);}bool Date::operator!=(const Date& d){return !(*this == d);}void Date::print(){cout << _year << "-" << _month << "-" << _day << endl;}Date::~Date(){//cout << "Date::~Date()" << endl;}ostream& operator<<(ostream& out, const Date& d){out << d._year << "年" << d._month << "月" << d._day << endl;return out;}istream& operator>>(istream& in, Date& d){cout << "请输入日期:" << endl;in >> d._year >> d._month >> d._day;return in;}
//Test.cpp
#include"Date.h"//Date func()
//{
//	Date d3(2024, 4, 14);
//	return d3;
//}
int fx()
{int a = 10;int b = 20;int c = 30;return a + b + c;
}
//int main()
//{
//	
//	  Date ret = func();
//	  ret.print();
//
//
//	/*Date d1(2024, 4, 14);
//	Date d2(2024, 5, 14);
//	d1.print();
//	d2.print();
//	cout << (d2 < d1) << endl;
//	cout << (d2 <= d1) << endl;
//	cout << (d2 > d1) << endl;
//	cout << (d2 >= d1) << endl;
//	cout << (d2 == d1) << endl;
//	cout << (d2 != d1) << endl;*/
//
//	return 0;
//}//Date func()
//{
//	Date d3(2024, 4, 14);
//	return d3;
//}
//Date& func()
//{
//	Date d3(2024, 4, 14);
//	return d3;
//}
//int main()
//{
//	//const Date& ret = func();
//	//ret.print();
//
//	return 0;
//}//Date& func()
//{
//	static Date d3(2024, 4, 14);
//	return d3;
//}
//int main()
//{
//	 Date& ret = func();
//	 ret.print();
//
//	return 0;
//}
//class Time
//{
//public:
//	Time()
//	{
//		_hour = 1;
//		_minute = 1;
//		_second = 1;
//	}
//	/*Time& operator=(const Time& t)
//	{
//		if (this != &t)
//		{
//			_hour = t._hour;
//			_minute = t._minute;
//			_second = t._second;
//		}
//		return *this;
//	}*/
//	
private:
//	int _hour;
//	int _minute;
//	int _second;
//};
//
//class Date1
//{
//public:
//	void print()
//	{
//		cout << _year << "-" << _month << "-" << _day << endl;
//	}
//private:
//	// 基本类型(内置类型)
//	int _year = 1970;
//	int _month = 1;
//	int _day = 1;
//	// 自定义类型
//	Time _t;
//};
//int main()
//{
//	Date1 d1;
//	Date1 d2;
//	d1 = d2;
//
//	d1.print();
//	d2.print();
//	return 0;
//}
//int main()
//{
//	Date d1(2024, 4, 15);
//	Date d2(2024, 2, 15);
//	d2 = d1;
//
//	d1.print();
//	d2.print();
//
//	
//	return 0;
//}//class Date1
//{
//public:
//	Date1(int year, int month, int day)
//	{
//		_year = year;
//		_month = month;
//		_day = day;
//	}
//	void Print()
//	{
//		cout << "Print()" << endl;
//		cout << "year:" << _year << endl;
//		cout << "month:" << _month << endl;
//		cout << "day:" << _day << endl << endl;
//	}
//	void Print() const
//	{
//		cout << "Print()const" << endl;
//		cout << "year:" << _year << endl;
//		cout << "month:" << _month << endl;
//		cout << "day:" << _day << endl << endl;
//	}
//private:
//	int _year; // 年
//	int _month; // 月
//	int _day; // 日
//};
//void Test()
//{
//	Date1 d1(2022, 1, 13);
//	d1.Print();
//	const Date1 d2(2022, 1, 13);
//	d2.Print();
//}
//  int main()
//{
//	  Test();
//	  return 0;
//}
int main()
{Date d1(2024, 4, 17);Date d2(2024, 9, 14);cin >> d1 >> d2;cout << d1 << d2;/*cout << (d2 - d1) << endl;d1.print();d2.print();*/return 0;
}

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

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

class Date1
{
public:Date1* operator&(){return this;}const Date1* operator&()const{return this;}
private:int _year;int _month;int _day;
};

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

撒花!!!

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

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

相关文章

【C++初识继承】

博主首页&#xff1a; 有趣的中国人 专栏首页&#xff1a; C进阶 本篇文章主要讲解 继承 的相关内容 目录 1. 继承的概念和定义 1.1 继承的概念 1.2 继承的定义 1.2.1 继承定义格式 1.2.2 继承方式与访问修饰限定符 2. 基类和派生类对象赋值转换 3. 继承中的作用域 …

linux离线安装mysql

一、下载mysql 地址&#xff1a;MySQL 这里选择64为还是32为要根据操作系统来 uname -m 二、上传解压配置mysql 使用root账户登录linux服务器&#xff0c;在opt文件下创建mysql文件夹 cd /opt sudo mkdir mysql 使用Xftp上传mysql压缩包到此文件夹下(自行决定路径) cd mysql/…

基于Kubernetes集群构建MongoDB

基于Kubernetes集群构建MongoDB 作者:行癫(盗版必究) 一:基础环境 1.Kubernetes集群正常运行 2.Harbor私有仓库正常运行 二:MongoDB项目部署 ​ MongoDB项目对应Kubernetes的yaml文件: --- apiVersion: v1 kind: Namespace metadata:name: m

力扣:104. 二叉树的最大深度(Java,DFS,BFS)

目录 题目描述&#xff1a;输入&#xff1a;输出&#xff1a;代码实现&#xff1a;1.深度优先搜索&#xff08;递归&#xff09;2.广度优先搜索&#xff08;队列&#xff09; 题目描述&#xff1a; 给定一个二叉树 root &#xff0c;返回其最大深度。 二叉树的 最大深度 是指从…

【QT进阶】Qt http编程之后端API测试工具postman使用介绍

往期回顾 【QT进阶】Qt Web混合编程之使用ECharts显示各类折线图等-CSDN博客 【QT进阶】Qt Web混合编程之实现ECharts数据交互动态修改-CSDN博客 【QT进阶】Qt http编程之http与https简单介绍-CSDN博客 【QT进阶】Qt http编程之后端API测试工具postman使用介绍 其实这个工具的…

Pytorch的下载安装

本文为自己整理的Pytorch下载相关的内容笔记&#xff0c;以便日后查阅 一. 基本命令 1.查看conda版本 conda --version2.创建conda新环境 conda create –n 名称 python版本3.查看已经创建的conda环境 conda info --envs4.进入虚拟环境 conda activate 环境名称 为了避免…

【Day 3】Ajax + Vue 项目、路由 + Nginx

1 Ajax Asynchronous JavaScript And XML 异步的 JavaScript 和 XML 作用&#xff1a; 数据交换 通过 Ajax 可以给服务器发送请求&#xff0c;并获取服务器响应的数据 异步交互 可以在不重新加载整个页面的情况下&#xff0c;与服务器交换数据并更新部分网页的技术&#xf…

【大模型应用极简开发入门(1)】LLM概述:LLM在AI中所处位置、NLP技术的演变、Transformer与GPT、以及GPT模型文本生成逻辑

文章目录 一. AI中大语言模型的位置与技术发展1. 从AI到Transformer2. NLP&#xff1a;自然语言处理3. LLM大型语言模型&#xff1a;NLP的一种特定技术3.1. LLM定义3.2. LLM的技术发展3.2.1. n-gram模型3.2.2. RNN与LSTM 二. Transformer在LLM中脱颖而出1. Transformer架构能力…

编译一个基于debian/ubuntu,centos,arhlinux第三方系统

目录 前言 准备工作 下载linux源码进行编译 linux源码下载 网站 问题 解决办法 编译 可能会遇到的问题 chroot下载debian环境 进入虚拟环境 把chroot的根目录文件打包为.gz文件 编译init文件&#xff08;用于系统启动时的一系列引导&#xff09; 给予文件夹权限 …

碎碎笔记01

凹凸性 一元函数 凸函数&#xff1a;二阶导数>0 f ( x ) x 2 f(x) x^2 f(x)x2的二阶导数是 2&#xff0c;>0凹函数&#xff1a;二阶导数<0 驻点&#xff0c;拐点 驻点&#xff1a;增减性的交替点 拐点&#xff1a;凹凸性的交替点 脑补 f ( x ) s i n x f(x) …

【树莓派学习】hello,world!

系统安装及环境配置详见【树莓派学习】系统烧录及VNC连接、文件传输-CSDN博客 树莓派内置python3&#xff0c;可以直接利用python输出。

Docker 部署 MongoDB 数据库

文章目录 官网地址docker 网络mongod.conf部署 MongoDB部署 mongo-expressdocker-compose.ymlMongoDB shell 官网地址 https://www.mongodb.com/zh-cn docker 网络 # 创建 mongo_network 网络 docker network create mongo_network # 查看网络 docker network list # 容器连…

Don‘t fly solo! 量化之路,AI伴飞

在投资界&#xff0c;巴菲特与查理.芒格的神仙友谊&#xff0c;是他们财富神话之外的另一段传奇。巴菲特曾这样评价芒格&#xff1a;他用思想的力量拓展了我的视野&#xff0c;让我以火箭的速度&#xff0c;从猩猩进化到人类。 人生何幸能得到一知己。如果没有这样的机缘&…

【C++初阶】List使用特性及其模拟实现

1. list的介绍及使用 1.1 list的介绍 1. list是可以在常数范围内在任意位置进行插入和删除的序列式容器&#xff0c;并且该容器可以前后双向迭代。 2. list的底层是双向链表结构&#xff0c;双向链表中每个元素存储在互不相关的独立节点中&#xff0c;在节点中通过指针指向其前…

学习在Debian系统上安装Shadowsocks教程

学习在Debian系统上安装Shadowsocks教程 安装shadowsocks-libev及其所需的依赖启动Shadowsocks服务&#xff1a;如果你想要通过代理本地流量&#xff0c;你可以使用ss-local&#xff1a;启动并设置ss-local&#xff1a;查看状态本地连接 安装shadowsocks-libev及其所需的依赖 …

如何创建响应式HTML电子邮件模板

在这个适合初学者的指南中&#xff0c;你将学习如何创建一个响应式电子邮件模板。你将跟随逐步说明以及代码片段设计一个在任何设备上都看起来很棒的电子邮件模板。 这个项目非常适合渴望掌握电子邮件设计基础的新手&#xff01; &#xff08;本文视频讲解&#xff1a;java56…

力扣112,路径总和

给你二叉树的根节点 root 和一个表示目标和的整数 targetSum 。判断该树中是否存在 根节点到叶子节点 的路径&#xff0c;这条路径上所有节点值相加等于目标和 targetSum 。如果存在&#xff0c;返回 true &#xff1b;否则&#xff0c;返回 false 。 叶子节点 是指没有子节点…

Python 比较文本文件

1、问题背景 我们需要比较一个文本文件 F 与路径下多个其他文本文件之间的差异。我们已经编写了以下代码&#xff0c;但只能输出一个文件的比较结果。我们需要修改代码&#xff0c;以便比较所有文件并打印所有结果。 import difflib import fnmatch import osfilelist[] f op…

Lobechat 的基本使用流程

一、安装 下载lobechart的页面代码 $ git clone https://github.com/lobehub/lobe-chat.git $ cd lobe-chat $ pnpm install $ pnpm run dev注意&#xff1a;node环境要18以上 二、使用本地模型 1.安装ollama 2.通过ollama 下载本地模型 llama2&#xff08;选择合适的本地模型…

[阅读笔记16][Orca-2]Teaching Small Language Models How to Reason

接下来是Orca-2&#xff0c;这篇是微软在23年11月发表的论文&#xff0c;在Orca-1的基础上又进行了一些改进。 作者希望教会Orca-2各种推理策略&#xff0c;例如逐步思考、回忆然后回答、先回忆再推理再回答、直接生成回答等等策略。并且Orca-2应该能针对不同任务应该使用最合适…