forked from zamfiroiu/POO2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1043_seminar12.cpp
180 lines (157 loc) · 4.16 KB
/
1043_seminar12.cpp
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
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
class Ferma {
string numeFerma;
int nrAnimale;
float* greutateAnimale;
public:
Ferma() {
numeFerma = "necunoscut";
nrAnimale = 0;
greutateAnimale = NULL;
}
Ferma(string numeFerma, int nrAnimale, float* greutateAnimale) {
this->numeFerma = numeFerma;
this->nrAnimale = nrAnimale;
this->greutateAnimale = new float[nrAnimale];
for (int i = 0; i < nrAnimale; i++) {
this->greutateAnimale[i] = greutateAnimale[i];
}
}
Ferma(const Ferma &f) {
this->numeFerma = f.numeFerma;
this->nrAnimale = f.nrAnimale;
this->greutateAnimale = new float[this->nrAnimale];
for (int i = 0; i < this->nrAnimale; i++)
this->greutateAnimale[i] = f.greutateAnimale[i];
}
Ferma&operator=(const Ferma &f) {
if (this->greutateAnimale != NULL) {
delete[] this->greutateAnimale;
}
this->numeFerma = f.numeFerma;
this->nrAnimale = f.nrAnimale;
this->greutateAnimale = new float[this->nrAnimale];
for (int i = 0; i < this->nrAnimale; i++)
this->greutateAnimale[i] = f.greutateAnimale[i];
return *this;
}
~Ferma()
{
if (this->greutateAnimale != NULL) {
delete[] this->greutateAnimale;
}
}
int getNrAnimale()
{
return this->nrAnimale;
}
void setNrAnimale(int nrAnimale)
{
if(nrAnimale > 0)
this->nrAnimale = nrAnimale;
}
string getNumeFerma()
{
return this->numeFerma;
}
void setNumeFerma(string numeFerma)
{
if (numeFerma.length() > 0)
this->numeFerma = numeFerma;
}
float* getGreutateAnimale()
{
if (greutateAnimale == NULL) {
throw "Vectorul este null";
}
else
return this->greutateAnimale;
}
void setGreutateAnimale(float* greutateAnimale, int nrAnimale)
{
this->nrAnimale = nrAnimale;
if (this->greutateAnimale != NULL)
delete[] this->greutateAnimale;
this->greutateAnimale = new float[this->nrAnimale];
for (int i = 0; i < nrAnimale; i++)
{
this->greutateAnimale[i] = greutateAnimale[i];
}
}
friend istream& operator>>(istream&citire, Ferma&f) {
cout << "Numele fermei: ";
citire >> f.numeFerma;
cout << "Numarul de animale: ";
citire >> f.nrAnimale;
if (f.greutateAnimale != NULL) delete[]f.greutateAnimale;
f.greutateAnimale = new float[f.nrAnimale];
for (int i = 0; i < f.nrAnimale; i++) {
cout << " greutatea animalului " << i+1 << " : ";
citire >> f.greutateAnimale[i];
}
return citire;
}
friend fstream& operator>>(fstream&citire, Ferma&f) {
cout << "Se citeste din fisier...";
citire >> f.numeFerma;
citire >> f.nrAnimale;
if (f.greutateAnimale != NULL)
delete[]f.greutateAnimale;
f.greutateAnimale = new float[f.nrAnimale];
for (int i = 0; i < f.nrAnimale; i++) {
citire >> f.greutateAnimale[i];
}
return citire;
}
};
ostream& operator<<(ostream& afisare, Ferma &f)
{
afisare << "Numele fermei este: " << f.getNumeFerma() ;
afisare << endl << "Numarul de animale: " << f.getNrAnimale();
afisare << endl << "Greutatea animalelor este: ";
for (int i = 0; i < f.getNrAnimale(); i++)
{
afisare << f.getGreutateAnimale()[i] << " ";
}
return afisare;
}
fstream& operator<<(fstream& afisare, Ferma &f)
{
afisare << f.getNumeFerma() << ";";
afisare << f.getNrAnimale() << ";";
for (int i = 0; i < f.getNrAnimale(); i++)
{
afisare << f.getGreutateAnimale()[i] << ";";
}
return afisare;
}
void main() {
//Ferma f;
//f.setGreutateAnimale(new float[3]{ 1000,800,1200 }, 3);
//f.setNumeFerma("FermaDeVaci");
//cout << f;
//cin >> f;
//cout << f;
//Ferma ferma("Ferma2", 3, new float[3]{ 200, 2300,400 });
//fstream f("Ferme.csv", ios::app);
//f << endl;
//f << ferma<<endl;
//f.close();
//Ferma ferma;
//fstream g("Ferme.txt", ios::in);
//g >> ferma;
//cout << ferma;
//g.close();
//Ferma ferma("Ferma2", 3, new float[3]{ 200, 2300,400 });
//fstream f("fisier.data", ios::out | ios::binary);
//f.write((char*)&ferma, sizeof(Ferma));
//f.close();
//fstream g("fisier.data", ios::in | ios::binary);
//Ferma ferma;
//g.read((char*)&ferma, sizeof(Ferma));
//cout << ferma;
//g.close();
}