C++构造函数,析构函数,拷贝构造函数

设计一个Per类,类中包含私有成员:姓名、年龄、指针成员身高、体重,再设计一个Stu类,类中包含私有成员:成绩、Per类对象 p1,设计这两个类的构造函数、析构函数和拷贝构造函数。


#include 

using namespace std;
class Per
{
    string name;
    int age;
    int *high;
    int *wigth;

public:
    Per()
    {
        cout << "Per 无参构造函数" <age =age;
}
void Per::show()
{
    cout << age <p1 = other.p1;
        this->score = other.score;
        cout << "Stu的拷贝构造函数" <score = score;
}
void Stu:: set_p(int p)
{
    p1.set_p(p);
}

void Stu::show()
{
    p1.show();
    cout << "score= " <

 

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