-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_7.java
More file actions
422 lines (348 loc) · 11 KB
/
task_7.java
File metadata and controls
422 lines (348 loc) · 11 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
import java.util.*;
public class task_7 {
public static void main(String[] args) {
// Plate class test
Plate plate = new Plate(4);
System.out.println(plate);
plate.set_contained("Обед");
System.out.println(plate);
// Teapot class test
Teapot teapot = new Teapot("black", "plastic", "tea", 2);
System.out.println(teapot);
teapot.pour();
System.out.println(teapot);
teapot.pour_out();
System.out.println(teapot);
// Hound class test
Hound hound = new Hound("Bobik", 6);
System.out.println(hound);
// Furniture and FurnitureShop classes test
Wardrobe wardrobe = new Wardrobe("plastic", "white");
System.out.println(wardrobe);
wardrobe.set_contained("skeleton");
System.out.println(wardrobe);
Table table = new Table("wood", "black", "dinner");
FurnitureShop furniture_shop = new FurnitureShop();
furniture_shop.add_furniture(wardrobe);
furniture_shop.add_furniture(table);
System.out.println(furniture_shop);
}
}
abstract class Dish {
protected String material;
protected String color;
protected String contains;
Dish() {
this.material = "unsetted";
this.color = "unsetted";
this.contains = "nothing";
System.out.println("\n[+] Dish abstract object was created");
}
Dish(String material, String color, String contains) {
this.material = material;
this.color = color;
this.contains = contains;
System.out.println("\n[+] Dish abstract object was created");
}
// Dish material getter
public String get_material() {
return this.material;
}
// Dish material setter
public void set_material(String material) {
this.material = material;
}
// Dish color getter
public String get_сolor() {
return this.color;
}
// Dish color setter
public void set_сolor(String color) {
this.color = color;
}
// Dish contains getter
public String get_contained() {
return this.contains;
}
// Dish contains setter
public void set_contained(String contains) {
this.contains = contains;
System.out.println("Dish contains now: " + this.contains);
}
public String toString() {
return "Dish object: material: " + this.material + ", color: " + this.color + ", contains: " + this.contains;
}
}
class Plate extends Dish {
protected double radius;
Plate() {
super.set_сolor("white");
super.set_material("porcelain");
this.radius = 1;
System.out.println("[+] Plate object was created");
}
Plate(double radius) {
super.set_сolor("white");
super.set_material("porcelain");
this.radius = radius;
System.out.println("[+] Plate object was created");
}
Plate(double radius, String color, String material, String contains) {
super.set_сolor(color);
super.set_material(material);
super.set_contained(contains);
this.radius = radius;
System.out.println("[+] Plate object was created");
}
// Radius getter
double get_radius() {
return this.radius;
}
// Radius setter
void set_radius(double radius) {
if (radius > 0) {
this.radius = radius;
System.out.println("Plate radius setted as: " + this.radius);
} else {
System.out.println("Plate radius must be > 0");
}
}
@Override
public String toString() {
System.out.println(super.toString());
return "Dish: Plate, radius: " + this.radius;
}
}
class Teapot extends Dish {
protected double volume;
Teapot() {
super.set_сolor("white");
super.set_material("porcelain");
super.set_contained("tea");
this.volume = 0.0;
System.out.println("[+] Teapot object was created");
}
Teapot(String color, String material, String contains, double volume) {
super.set_сolor(color);
super.set_material(material);
super.set_contained(contains);
this.volume = volume;
System.out.println("[+] Teapot object was created");
}
void pour() {
this.volume -= 0.2;
System.out.println("Teapot poured one cup of " + super.get_contained());
}
void pour_out() {
this.volume = 0.0;
System.out.println("Teapot poured out all " + super.get_contained());
super.set_contained("nothing");
}
// Radius getter
double get_volume() {
return this.volume;
}
// Radius setter
void set_volume(double volume) {
if (volume > 0 && volume < 10) {
this.volume = volume;
System.out.println("Teapot volume setted as: " + this.volume);
} else {
System.out.println("Teapot volume must be > 0");
}
}
@Override
public String toString() {
System.out.println(super.toString());
return "Dish: Teapot, volume: " + this.volume;
}
}
abstract class Dog {
private String name;
private int age;
Dog() {
this.name = "unsetted";
this.age = 1;
System.out.println("\n[+] Dog object with name: " + this.name + " was created");
}
// Init
Dog(String name, Integer age) {
this.name = name;
this.age = age;
System.out.println("\n[+] Dog object with name: " + this.name + " was created");
}
// Age setter
public void set_age(int age) {
if (age > 0 && age < 100) {
this.age = age;
System.out.println("Dog age setted as: " + this.age);
}
}
// Age getter
public int get_age() {
return this.age;
}
// Name setter
public void set_name(String name) {
this.name = name;
System.out.println("Dog name setted as: " + this.name);
}
// Name getter
public String get_name() {
return this.name;
}
// Dog age as human age getter
public int get_human_age() {
return this.age * 7;
}
public String toString() {
return "Dog " + this.name + " with age " + this.age;
}
}
class Hound extends Dog {
Hound() {
super.set_name("unsetted");
super.set_age(1);
System.out.println("[+] Hound dog object was created");
}
Hound(String name, Integer age) {
super.set_name(name);
super.set_age(age);
System.out.println("[+] Hound dog object was created");
}
void hunt() {
System.out.println("Hound dog now hunting");
}
void persecute() {
System.out.println("Hound dog now persecuting someone :)))");
}
public String toString() {
System.out.println(super.toString());
return "Dog: Hound";
}
}
abstract class Furniture {
protected String material;
protected String color;
Furniture() {
this.material = "unsetted";
this.color = "unsetted";
System.out.println("\n[+] Furniture abstract object was created");
}
Furniture(String material, String color) {
this.material = material;
this.color = color;
System.out.println("\n[+] Furniture abstract object was created");
}
// Furniture material getter
public String get_material() {
return this.material;
}
// Furniture material setter
public void set_material(String material) {
this.material = material;
}
// Furniture color getter
public String get_сolor() {
return this.color;
}
// Furniture color setter
public void set_сolor(String color) {
this.color = color;
}
public String toString() {
return "Furniture object: material: " + this.material + ", color: " + this.color;
}
}
class Wardrobe extends Furniture {
protected String contains;
Wardrobe() {
super.set_material("wood");
super.set_сolor("brown");
this.contains = "nothing";
System.out.println("\n[+] Wardrobe object was created");
}
Wardrobe(String material, String color) {
super.set_material(material);
super.set_сolor(color);
this.contains = "nothing";
System.out.println("\n[+] Wardrobe object was created");
}
Wardrobe(String material, String color, String contains) {
super.set_material(material);
super.set_сolor(color);
this.contains = contains;
System.out.println("\n[+] Wardrobe object was created");
}
// Wardrobe contains getter
public String get_contained() {
return this.contains;
}
// Wardrobe contains setter
public void set_contained(String contains) {
this.contains = contains;
System.out.println("Wardrobe contains now: " + this.contains);
}
@Override
public String toString() {
System.out.println(super.toString());
return "Wardrobe object: contains: " + this.contains;
}
}
class Table extends Furniture {
protected String contains;
Table() {
super.set_material("wood");
super.set_сolor("brown");
this.contains = "nothing";
System.out.println("\n[+] Table object was created");
}
Table(String material, String color) {
super.set_material(material);
super.set_сolor(color);
this.contains = "nothing";
System.out.println("\n[+] Table object was created");
}
Table(String material, String color, String contains) {
super.set_material(material);
super.set_сolor(color);
this.contains = contains;
System.out.println("\n[+] Table object was created");
}
// Table contains getter
public String get_contained() {
return this.contains;
}
// Table contains setter
public void set_contained(String contains) {
this.contains = contains;
System.out.println(this.contains + " on table now");
}
@Override
public String toString() {
System.out.println(super.toString());
return "Table object: on table: " + this.contains;
}
}
class FurnitureShop {
private List<Furniture> furniture_shop_array = new ArrayList<Furniture>();
{
System.out.println("\n[+] Furniture shop object was created");
}
// Add one Furniture
public void add_furniture(Furniture furniture) {
this.furniture_shop_array.add(furniture);
System.out.println(furniture + ". This furniture added into the furniture shop successfully");
}
// Add many Furnitures
public void add_furnitures(Furniture furniture_array[]) {
this.furniture_shop_array.addAll(new ArrayList<Furniture>(Arrays.asList(furniture_array)));
System.out.println("Furnitures: " + Arrays.toString(furniture_array) + " added into the furniture shop successfully");
}
public String toString() {
if (!this.furniture_shop_array.isEmpty())
return "Furniture shop: " + this.furniture_shop_array;
else
return "Furniture shop empty!";
}
}