IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 运算符重载 -> 正文阅读

[C++知识库]运算符重载

1、递增运算符重载

#include <iostream>
using namespace std;

class Person
{
	friend ostream & operator<<(ostream &cout, Person& p);
public:
	Person()
	{
		m_A = 0;
	}

	//前置++运算符
	//重置前置++运算符  返回引用为了一直对一个数据进行递增操作
	Person& operator++()
	{
		m_A++;
		return *this;
	}

	//后置++运算符
	//void operator++(int) int表示占位参数
	Person operator++(int)
	{
		Person tmp = *this;
		m_A++;
		return tmp;
	}
private:
	int m_A;
};

ostream & operator<<(ostream &cout, Person& p)
{
	cout << p.m_A << endl;
	return cout;
}

//前置++
void test1()
{
	Person P1;
	cout << ++(++P1) << endl;
	cout << P1 << endl;
}

//后置++
void test2()
{
	Person P1;
	cout << P1++ << endl;
	cout << P1 << endl;
}

int main()
{
	test2();

	return 0;
}

2、赋值运算符重载

#include <iostream>
using namespace std;

class Person
{
public:
	
	Person(int age)
	{
		m_Age = new int(age);//在堆区开辟内存  要自己进行释放
	}

	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 test()
{
	Person P1(10);
	Person P2(20);
	Person P3(30);


	P1 = P2 = P3;

	cout << "P1 = " << *(P1.m_Age) << " P2 = " << *(P2.m_Age) << " P3 = " << *(P3.m_Age) << endl;
}

int main()
{
	test();

	return 0;
}

3、加号运算符重载

#include <iostream>
#include <string>
using namespace std;

class Person
{
public:
	Person()
	{
		func(10,10);
	}

	//成员函数的加法重载
	/*Person operator+(Person &p)
	{
		Person tmp;
		tmp.m_A = this->m_A + p.m_A;
		tmp.m_B = this->m_B + p.m_B;
		return tmp;
	}*/

	void func(int a, int b)
	{
		m_A = a;
		m_B = b;
	}

	int m_A;
	int m_B;

};

//全局函数的加法重载
Person operator+(Person&P1, Person&P2)
{
	Person tmp;
	tmp.m_A = P1.m_A + P2.m_A;
	tmp.m_B = P1.m_A + P2.m_B;
	return tmp;
}

void test()
{

	Person P1;
	Person P2;
	Person P3;
	P3 = P1 + P2;

	cout << "P3_m_A = " << P3.m_A << endl;
	cout << "P3_m_B = " << P3.m_B << endl;
}

int main()
{
	test();

	return 0;
}

4、左移运算符重载

#include <iostream>
#include <string>
using namespace std;

class Person
{
public:
	Person()
	{
		func(10,10);
	}

	//成员函数的加法重载
	/*Person operator+(Person &p)
	{
		Person tmp;
		tmp.m_A = this->m_A + p.m_A;
		tmp.m_B = this->m_B + p.m_B;
		return tmp;
	}*/

	void func(int a, int b)
	{
		m_A = a;
		m_B = b;
	}

	int m_A;
	int m_B;

};

//全局函数的加法重载
Person operator+(Person&P1, Person&P2)
{
	Person tmp;
	tmp.m_A = P1.m_A + P2.m_A;
	tmp.m_B = P1.m_A + P2.m_B;
	return tmp;
}

void test()
{

	Person P1;
	Person P2;
	Person P3;
	P3 = P1 + P2;

	cout << "P3_m_A = " << P3.m_A << endl;
	cout << "P3_m_B = " << P3.m_B << endl;
}

int main()
{
	test();

	return 0;
}

5、函数调用运算符重载

#include <iostream>
using namespace std;
#include <string>


//函数调用运算符重载
class Person
{
public:

	//重载函数调用运算符
	void operator()(string str)
	{
		cout << str << endl;
	}
};


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

class MyAdd
{
public:
	int operator()(int a, int b)
	{
		return a + b;
	}
};

void test()
{
	Person P1;

	MyAdd myadd;

	P1("你好!");//由于使用起来非常类似函数调用 因此称为仿函数

	cout << "两数之和为:" << myadd(10, 20) << endl;

	cout << MyAdd()(10, 20) << endl;//匿名函数对象   MyAdd()匿名函数
}


int main()
{
	test();

	return 0;
}

6、关系运算符重载

#include <iostream>
using namespace std;

class Person
{
public:

	Person(string name, int age)
	{
		m_name = name;
		m_age = age;
	}

	//成员函数关系运算符重载
	bool operator==(Person& P)
	{
		if (this->m_age == P.m_age && this->m_name == P.m_name)
		{
			return true;
		}
		else
			return false;
	}
private:

	string m_name;
	int m_age;

};

void test()
{
	Person P1("朱振麟", 23);
	Person P3("朱振麟", 23);
	Person P2("张萌", 22);
	if (P1 == P3)
	{
		cout << "两者相等" << endl;
	}
	else
		cout << "两者不相等" << endl;
}

int main()
{
	test();

	return 0;
}

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:18:35  更:2022-03-24 00:20:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:44:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码