C++ day4

目录

思维导图

[定义一个Person类,私有成员int age,string &name,定义一个Stu类,包含私有成员double *score,写出两个类的构造函数、析构函数、拷贝构造和拷贝赋值函数,完成对Person的运算符重载(算术运算符、条件运算符、逻辑运算符、自增自减运算符、插入/提取运算符)](#定义一个Person类,私有成员int age,string &name,定义一个Stu类,包含私有成员double *score,写出两个类的构造函数、析构函数、拷贝构造和拷贝赋值函数,完成对Person的运算符重载(算术运算符、条件运算符、逻辑运算符、自增自减运算符、插入/提取运算符))


思维导图

定义一个Person类,私有成员int age,string &name,定义一个Stu类,包含私有成员double *score,写出两个类的构造函数、析构函数、拷贝构造和拷贝赋值函数,完成对Person的运算符重载(算术运算符、条件运算符、逻辑运算符、自增自减运算符、插入/提取运算符)

cpp 复制代码
#include <iostream>

using namespace std;
class Person
{
    int age;
    string &name;
public:

    Person(int age,string &name):age(age),name(name){cout << "Person的构造函数" << endl;}
    ~Person(){cout << "Person的析构函数"<< endl;}
    Person(const Person &other):age(other.age),name(other.name)
    {
        cout << "Person的拷贝构造函数" << endl;
    }
    Person &operator=(const Person &other)
    {
        this->age=other.age;
        this->name=other.name;
        cout << "Person的拷贝赋值函数" << endl;
        return *this;
    }

    Person operator+(Person &other);
    Person operator-(Person &other);
    Person operator*(Person &other);
    Person operator/(Person &other);
    friend Person operator%(Person &c1,Person &c2);

    friend bool operator>(Person &c1,Person &c2);
    friend bool operator<(Person &c1,Person &c2);
    friend bool operator==(Person &c1,Person &c2);
    friend bool operator>=(Person &c1,Person &c2);
    friend bool operator<=(Person &c1,Person &c2);
    friend bool operator!=(Person &c1,Person &c2);
    friend bool operator&&(Person &c1,Person &c2);
    friend bool operator||(Person &c1,Person &c2);
    void operator()();
    friend Person operator++(Person &c1);
    friend Person operator--(Person &c1);
    Person operator++(int);
    Person operator--(int);
    friend ostream &operator<<(ostream &out,Person &c1);
    friend istream &operator>>(istream &out,Person &c1);
};
string n="";
Person temp(0,n);
//+运算符重载
Person Person::operator+(Person &other)
{
    temp.age = this->age+other.age;
    temp.name=this->name;
    return temp;
}
//-运算符重载
Person Person::operator-(Person &other)
{
    temp.age = this->age-other.age;
    temp.name=this->name;
    return temp;
}
//*运算符重载
Person Person::operator*(Person &other)
{
    temp.age = this->age*other.age;
    temp.name=this->name;
    return temp;
}
//  /运算符重载
Person Person::operator/(Person &other)
{
    temp.age = this->age/other.age;
    temp.name=this->name;
    return temp;
}
//%运算符重载
Person operator%(Person &c1,Person &c2)
{
      temp.age=c1.age%c2.age;
      temp.name=c1.name;
    return temp;
}
//>运算符重载
bool operator>(Person &c1,Person &c2)
{
    return c1.age>c2.age;
}
//<运算符重载
bool operator<(Person &c1,Person &c2)
{
    return c1.age<c2.age;
}
//==运算符重载
bool operator==(Person &c1,Person &c2)
{
    return c1.age==c2.age;
}
//>=运算符重载
bool operator>=(Person &c1,Person &c2)
{
    return c1.age>=c2.age;
}
//<=运算符重载
bool operator<=(Person &c1,Person &c2)
{
    return c1.age<=c2.age;
}
//!=运算符重载
bool operator!=(Person &c1,Person &c2)
{
    return c1.age!=c2.age;
}
//&&运算符重载
bool operator&&(Person &c1,Person &c2)
{
    return c1.age&&c2.age;
}
//||运算符重载
bool operator||(Person &c1,Person &c2)
{
    return c1.age||c2.age;
}
//()运算符重载
void Person::operator()()
{
    cout << "hello" << endl;
}
//前自增
Person operator++(Person &c1)
{
    ++(c1.age);
    return c1;
}
//前自减
Person operator--(Person &c1)
{
    --(c1.age);
    return c1;
}
//后自增
Person Person::operator++(int)
{
    temp.age=this->age++;
    temp.name=this->name;
    return temp;
}
//后自减
Person Person::operator--(int)
{
    temp.age=this->age--;
    temp.name=this->name;
    return temp;
}
//cout运算符重载
ostream &operator<<(ostream &out,Person &c1)
{
    out << c1.age << " " << c1.name;
    return out;
}
//cin运算符重载
istream &operator>>(istream &in,Person &c1)
{
    in >> c1.age;
    in >> c1.name;
    return in;
}

class Stu
{
    double *score;
public:
    Stu(double score):score(new double(score)){cout << "Stu的构造函数" << endl;}
    ~Stu()
    {
        delete score;
        cout << "Stu的析构函数"<< endl;
    }
    Stu(const Stu &other):score(new double(*(other.score)))
    {
        cout << "Stu的拷贝构造函数" << endl;
    }
    Stu &operator=(const Stu &other)
    {
        *(this->score)=*(other.score);
        cout << "Stu的拷贝赋值函数" << endl;
        return *this;
    }
};
int main()
{
    string name="zhangsan";
    Person s1(12,name);
    return 0;
}
相关推荐
A尘埃2 分钟前
智能工单路由系统(Java)
java·开发语言·智能工单
汉克老师10 分钟前
第十四届蓝桥杯青少组C++选拔赛[2023.2.12]第二部分编程题(1、求和)
c++·蓝桥杯·蓝桥杯c++·c++蓝桥杯
Source.Liu13 分钟前
【Python基础】 13 Rust 与 Python 注释对比笔记
开发语言·笔记·python·rust
qq_1955516924 分钟前
代码随想录70期day3
开发语言·python
XXYBMOOO29 分钟前
Qt UDP 通信类详解与实现
开发语言·网络·c++·qt·网络协议·ui·udp
pusue_the_sun34 分钟前
C语言强化训练(12)
c语言·开发语言·算法
君鼎34 分钟前
More Effective C++ 条款29:引用计数
c++
小欣加油38 分钟前
leetcode 6 Z字形变化
c++·算法·leetcode·职场和发展
曙曙学编程43 分钟前
stm32——寄存器操作,蜂鸣器原理
c语言·c++·stm32·单片机·嵌入式硬件
counting money1 小时前
JAVA泛型基础
java·开发语言·eclipse