Wednesday, April 6, 2016

Array of Objects in C++

We know that an array can be of any data type. Hence, we can also have arrays of variables that are of the type class. Such variables are called array of objects.
Consider the following class definition:
The identifier employee is a user-defined data type and can be used to create objects that relate to different categories of the employee.
For example, consider the following:
In above declaration, the array managers contains three objects (managers), namely, managers[0], managers[1] and managers[2], of the type employee class.
Similarly, the foremen array contains 15 objects (foremen) and the workers array contains 75 objects (workers).
Since, an array of objects behave like any other array, we can use the usual array-accessing methods to access individual elements and then the dot member operator to access the member functions.
For example, the statement:
manager[i].putdata();
will display the data of the ith element of the array managers. That is, this statement requests the object manager[i] to invoke the member function putdata().

0 comments:

Post a Comment