c++day3

  1. 定义一个Person类,包含私有成员,int *age,string &name,一个Stu类,包含私有成员double *score,Person p1,写出Person类和Stu类的特殊成员函数,并写一个Stu的show函数,显示所有信息。
    #include 
    
    using namespace std;
    class Person
    {
        int *age;
        string &name;
    public:
        int get_age();
        string & get_name();
        Person(int a,string &name):age(new int(a)),name(name) {cout<<"Person的有参构造函数"<age)=*(other.age);
            this->name=(other.name);
            cout<<"Person的拷贝赋值函数"<score)=*(other.score);
            this->p1=(other.p1);
            cout<<"Stu的拷贝赋值函数"<

    c++day3_第1张图片

  2. 整理思维导图(从特殊成员函数的角度出发整理)

 c++day3 - 幕布

你可能感兴趣的:(c++)