List class...continued...
private:
data s_array[SIZE];
int number_of_students;
};
•
This provides for a statically allocated
array of students
•
Notice, none of the member functions
uses an index or passes the array
•
Why do we need the 2nd data member?