菜鸟的博客

纵有疾风起,人生不言弃。

导航

2023年4月21日 #

2023.4.21 (2)

摘要: 1 //递增运算符的重载 2 #include <iostream> 3 using namespace std; 4 class Myinteger 5 { 6 friend ostream& operator<<(ostream &cout,Myinteger &myint); 7 public 阅读全文

posted @ 2023-04-21 22:00 hhmzd233 阅读(11) 评论(0) 推荐(0) 编辑

2023.4.21

摘要: 1 #include <iostream> 2 using namespace std; 3 //通过成员函数重载+号 4 class Person 5 { 6 public: 7 Person operator+(Person &p) 8 { 9 Person temp; 10 temp.m_A 阅读全文

posted @ 2023-04-21 20:55 hhmzd233 阅读(14) 评论(0) 推荐(0) 编辑