-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimal.h
161 lines (130 loc) · 2.54 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
#pragma once
#include <iostream>
#include <string>
#include <vector>
#include <utility>
class Animal
{
protected:
static int nextId;
const int id;
std::string name;
int age;
public:
Animal():id(nextId++),age(0),name("None")
{
}
Animal(Animal&& a): id(std::move(a.id)),name(std::move(a.name)),age(std::move(a.age)){
}
Animal(const Animal& a):id(a.id),name(a.name),age(a.age){
}
Animal(std::string name_, int age_) : name(name_), age(age_), id(nextId++) {}
~Animal(){
}
public:
virtual std::string ToEat() const = 0; // чисто виртуальная функция
virtual std::string ToSleep() const = 0;
virtual void Print() const = 0;
virtual void Play(){
std::cout << "Animal is playing" << std::endl;
}
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;
}