First page Back Continue Last page Graphics
DEFINITION OF grade
double Student_info::grade( ) const { return ::grade(midterm, final, homework); }
Note call to grade is preceeded by ::. This insists on using a version of grade that is not a member of anything. (our previously defined one).
const means this is a "const member function". This function may NOT change the internal state of the object on which it executes.