Question: C++ question Please implement the Big Five, create a (copy constructor, copy assignment operator, destructor, move assignment constructor, and move constructor). class Stu{ public: Stu();

C++ question

Please implement the "Big Five", create a (copy constructor, copy assignment operator, destructor, move assignment constructor, and move constructor).

class Stu{

public:

Stu();

//Big Five Functions

private:

string* schoolZipCode{nullptr};

int* finalScore{nullptr};

}

Stu::Stu(){

this->schoolZipCode = new string{"94132"};

this->finalScore = new int{99};

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!