November 2001
Beginner
1128 pages
29h 12m
English
| 1: | For each of the following sets of classes, indicate whether public or private derivation is more appropriate for the second column:
| ||||||||||
| 2: | Suppose we have the following definitions:
class Frabjous {
private:
char fab[20];
public:
Frabjous(const char * s = "C++") : fab(s) {}
virtual void tell() { cout << fab; }
};
class Gloam {
private:
int glip;
Frabjous fb;
public:
Gloam(int g = 0, const char * s = "C++");
Gloam(int g, const Frabjous & f);
void tell();
};
Given that the Gloam version of tell() should display the values of glip and fb, provide definitions for the three Gloam methods. ... |
Read now
Unlock full access