【c++】黑马·3 重载和继承

本文通过多个示例介绍了C++中的运算符重载,包括加号+的重载,左运算符<<的重载,自增运算符++的重载,以及对象赋值运算符=的重载。这些示例涵盖了友元函数、返回引用、深浅拷贝等概念,展示了如何灵活地扩展C++类的行为。
摘要由CSDN通过智能技术生成

黑马p121运载符重载加号

/*黑马p120友元friend成员函数*/
#include<iostream>
#include<string>
using namespace std;
class Person
{
public:
	Person()
	{
		this->a = 1;
		this->b = 2;
	}
	/*Person operator+(Person& p)
	{
		Person temp;
		temp.a = this->a + p.a;
		temp.b = this->b + p.b;
		return temp;
	}*/
	int a;
	int b;
};
Person operator+(Person& p1,Person& p2)
{
	Person temp;
	temp.a = p1.a + p2.a;
	temp.b = p1.b + p2.b;
	return temp;
}
Person operator+(Person& p1, int a)
{
	Person temp;
	temp.a = p1.a + a;
	temp.b = p1.b + a;
	return temp;
}
void test()
{
	Person p1, p2, p3,p4;
	p3 = p1 + p2;
	p4 = p1 + 4;
	cout << p3.a << endl << p3.b << endl;
	cout << p4.a << endl << p4.b << endl;
}
int main()
{
	test();
	return 0;
}

黑马p122运载符重载左运算符

/*黑马p122运载符重载左运算符*/
#include<iostream>
#include<string>
using namespace std;
class Person
{
public:
	Person()
	{
		this->a = 1;
		this->b = 2;
	}
	int a;
	int b;
};
ostream& operator<<(ostream& out, Person p)
{
	out <<"a="<< p.a<<" b="<<p.b<<endl;
	return out;
}
void test()
{
	Person p;
	cout << p << "  hello" << endl;
}
int main()
{
	test();
	return 0;
}

黑马p123运载符重载自加

/*黑马p122运载符重载左运算符*/
#include<iostream>
#include<string>
using namespace std;
class Myint
{
	friend ostream& operator<<(ostream& out, Myint i);
public:
	Myint()
	{
		a = 0;
	}
	Myint& operator++() {
		a++;
		return *this;
	}
	Myint operator++(int) {
		Myint temp=*this;
		a++;
		return temp;
	}
private:
	int a;
};
ostream& operator<<(ostream& out, Myint i)
{
	out <<  i.a;
	return out;
}
void test()
{
	Myint i;
	cout << (i++)++<<i;
}
int main()
{
	test();
	return 0;
}

/*作者:jennie
* 开始时间:2022年03月24日 13:31:34 星期四 
* 结束时间:2022年03月24日 13:41:37 星期四 
* 课程名:黑马c++
* 知识单元:运算重载符赋值=
* 属性:例题
* 具体题目要求:
*(默认赋值全部),深浅拷贝
*/
#include<iostream>
using namespace std;
class Person {
	int *age;
public:
	Person(int a) {
		age = new int(a);
	}
	int getAge() {
		return *age;
	}
	Person& operator=(Person p) {
		if (age != NULL) {
			delete age;
			age = NULL;
		}
		age = new int(p.getAge());
		return *this;
	}
};
int main() {
	Person p1(18), p2(20);
	p2 = p1;
	cout << p1.getAge() << p2.getAge();
	return 0;
}

/*作者:jennie
* 开始时间:2022年03月24日 15:29:42 星期四 
* 结束时间:2022年03月24日 15:39:44 星期四 
* 课程名:黑马c++
* 知识单元:运算重载符调用()
* 属性:例题
* 具体题目要求:打印 求和 伪函数 匿名调用
*/
#include<iostream>
using namespace std;
class MyClass {
public:
	void operator()(string s) {
		cout << s<<endl;
	}
	int operator()(int a,int b) {
		return a + b;
	}
};
int main() {
	MyClass c;
	c("hello");
	cout << c(1, 2)<<endl;
	MyClass()("world");
	cout << MyClass()(4, 5) << endl;
	return 0;
}

/*作者:jennie
* 开始时间:2022年03月24日 23:00:42 星期四 
* 结束时间:2022年03月24日 23:10:46 星期四 
* 课程名:黑马c++
* 知识单元:129 47 继承的对象模型
* 属性:例题
* 具体题目要求:
*字节大小+开发命令提示行
*/
#include<iostream>
using namespace std;
class Base {
public:
	int a;
protected:
	int b;
private:
	int c;
};
class Son:public Base {
public:
	int d;
};
int main() {
	cout << sizeof(Son);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jennie佳妮

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值