post lecture 2-2
This commit is contained in:
@@ -2,9 +2,15 @@ using namespace std;
|
||||
|
||||
class Dog {
|
||||
public:
|
||||
Dog(int age, int namelength, char * name);
|
||||
~Dog();
|
||||
int age;
|
||||
int namelength;
|
||||
char * name;
|
||||
Dog(int age, int namelength, char * name);
|
||||
Dog(const Dog& from);
|
||||
~Dog();
|
||||
Dog& operator=(const Dog& rhs);
|
||||
char operator[](int index) const;
|
||||
char& operator[](int index);
|
||||
friend ostream& operator<<(ostream& os, const Dog& d);
|
||||
private:
|
||||
int age;
|
||||
int namelength;
|
||||
char * name;
|
||||
};
|
||||
Reference in New Issue
Block a user