-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimal.h
208 lines (175 loc) · 3.06 KB
/
animal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#pragma once
#include <iostream>
#include <string>
#include <vector>
#include <utility>
#include <sstream>
#include<assert.h>
enum Animal_ID
{
Cat_ID = 0,
Dog_ID,
Fish_ID
};
class Animal
{
protected:
static int nextId;
const int id;
std::string name;
int age;
public:
Animal() : id(nextId++), age(0), name("Noname")
{
}
Animal(Animal &&a) : id(nextId++), name(std::move(a.name)), age(std::move(a.age))
{ // конструктор перемещения
}
Animal(const Animal &a) : id(nextId++), name(a.name), age(a.age)
{
}
Animal(std::string name_, int age_) : name(name_), age(age_), id(nextId++) {}
Animal(std::istringstream &str) : id(nextId++)
{
std::string name_;
str >> name_;
if (name_ == ",,")
{
name = "NoName";
str >> age;
}
else
{
name = name_;
str >> age;
}
}
virtual ~Animal() {}
virtual double getFeedWeight() = 0;
virtual void addAnimal(Animal *a)
{
assert(false);
}
virtual void Print() const = 0;
virtual void Play()
{
std::cout << "Animal is playing" << std::endl;
}
static Animal *createAnimal(Animal_ID id,std::string animalName,int animalAge,std::string animalBreed);
int getId() const
{
return id;
}
void SetAnimalName()
{
std::cin >> name;
}
std::string GetAnimalName() const
{
return name;
}
void SetAnimalAge()
{
std::cin >> age;
}
int GetAnimalAge() const
{
return age;
}
bool operator==(const Animal &other) const
{
return id == other.id && name == other.name && age == other.age;
}
Animal &operator=(const Animal &a)
{
if (this == &a)
{
return *this;
}
name = a.name;
age = a.age;
return *this;
}
Animal &operator=(Animal &&other)
{ // оператор перемещения с присваиванием
if (this == &other)
{
return *this;
}
name = std::move(other.name);
age = std::move(other.age);
return *this;
}
};
class Person
{
private:
int age;
std::string name;
std::vector<Animal *> pets;
public:
Person(std::string name_, int age_, Animal *anim)
{
pets.push_back(anim);
name = name_;
age = age_;
}
void Play()
{
for (Animal *animal : pets)
{
animal->Play();
std::cout << "with " << name << "\n";
}
}
void PrintOwner()
{
std::cout << name << " " << age;
}
std::string GetOwnerName() const
{
return name;
}
int GetOwnerAge() const
{
return age;
}
void SetAge(int a)
{
age = a;
}
void PrintAllAnim()
{
for (auto &anim : pets)
{
anim->Print();
}
}
void Push_Animal(Animal *anim)
{
pets.push_back(anim);
}
std::vector<Animal *> GetVectorAnimal()
{
return pets;
}
};
int Animal::nextId = 10000;
std::ostream &operator<<(std::ostream &ostream, Animal &a)
{
std::string name_ = a.GetAnimalName();
int age_ = a.GetAnimalAge();
int Id = a.getId();
ostream << "id(" << Id << ")" << name_ << " " << age_;
ostream << "\n";
return ostream;
}
std::ostream &operator<<(std::ostream &ostream, Person &p)
{
std::string name_ = p.GetOwnerName();
int age_ = p.GetOwnerAge();
p.PrintAllAnim();
ostream << name_ << " " << age_ << " ";
ostream << "\n";
return ostream;
}