Answer to Question #185720 in C++ for Muhammad Danyal

Question #185720

Write a program that defines a class with a data member to holds a “serial number” for each object created from the class. That is, the first object created will be numbered 1, the second 2, and so on. To do this, you’ll need another data member that records a count of how many objects have been created so far. (This member should apply to the class as a whole; not to individual objects. What keyword specifies this?) Then, as each object is created, its constructor can examine this count member variable to determine the appropriate serial number for the new object. Add a member function that permits an object to report its own serial number. Then write a main() program that creates three objects and queries each about its serial number. They should respond I am object number 2, and so on


1
Expert's answer
2021-04-26T13:58:23-0400
#include <iostream>
using namespace std;

class Serial {
public:
static int counter;
int number;

//constructor

public:Serial() {
number = ++counter;
};

void getSerial() {
cout << "I am object " << number << endl;
};
};


int Serial::counter = 0;

int main() {
Serial obj1; //creating first object for class Serial
Serial obj2; // creating another object for class Serial
Serial obj3; // creating third object for class Serial
obj1.getSerial(); //calling them from method getSerial
obj2.getSerial();
obj3.getSerial();
cin.get();
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS