Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

I need to help writing a constructor that uses an array of pointers to a class.

Please take a look at the following code:

class Course{
public:
// Default Constructor.
Course(char *CourseName = "", char *instructor = "", char *semesterYr = "");



protected:
char *CourseName;
char *instructor;
char *semesterYr;
};
****The Course class provides information about a particualr course****

class Student : public Course{
public:
// Constructor.
Student(char *StudentName = "", char *SS = "", char CourseGrade = ' ',

char *CourseName = "", char *instructorName = "", char *SemesterYr
= "");

protected:
char *StudentName;
char *SS;
char CourseGrade;
static i
nt NumStudentObj;
};

***The Student class provides information about a particular student***

AND FINALLY THE CLASS IN QUESTION!!!!!!!

class CStats : public Course{
public:
// Constructor,
CStats(Student *StudentArray[]);

private:
int NumberOfStudents;
char CourseGradeAverage;
};

I need to pass an array of pointers to a Student class to the CStat constructor.
Since the Student class has inhertied data members of Course class, passing
a pointer to a Student object will be more sufficient. This constructor should
also print out the information contained in the Course & Student data members.
My instructor stated that I can use array or pointer notation.

How would I setup this function so that it outputs information stored in
the data members ?

**NOTE**
Information like the StudentName , SS#, and CourseGrade will be entered from
my main() source file.

Thanks in advance,
eejay
0 Kudos
Message 1 of 2
(4,300 Views)
eejay,

If you haven't already done so, you may wish to consider posting your question to some newsgroups that deal with C++ specific questions. You may wish to try the following groups:

comp.lang.c++
alt.comp.lang.learn.c-c++

Based on the traffic in those groups, you may be able to get an answer to your question in a short amount of time.

Good luck!

Regards,
Wilbur Shen
Web Support and Operations
National Instruments
0 Kudos
Message 2 of 2
(4,300 Views)