-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLesson6.java
110 lines (94 loc) · 3.45 KB
/
Lesson6.java
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
/**
* Java 1. Homework 6
*
* @author Artur
* @version 27.10.2021
*/
/*
* 1. Создать классы Собака и Кот с наследованием от класса Животное. 2. Все
* животные могут бежать и плыть. В качестве параметра каждому методу передается
* длина препятствия. Результатом выполнения действия будет печать в консоль.
* (Например, dogBobik.run(150); -> 'Бобик пробежал 150 м.'); 3. У каждого
* животного есть ограничения на действия (бег: кот 200 м., собака 500 м.;
* плавание: кот не умеет плавать, собака 10 м.). 4. * Добавить подсчет
* созданных котов, собак и животных.
*/
class Lesson6 {
public static void main(String[] args) {
Cat cat = new Cat(200);
Dog dog = new Dog(500, 11);
IAnimal[] animals = { cat, dog };
for (IAnimal animal : animals) {
System.out.println(animal);
System.out.println(animal.run(199));
System.out.println(animal.run(200));
System.out.println(animal.run(201));
System.out.println(animal.run(499));
System.out.println(animal.run(500));
System.out.println(animal.run(501));
System.out.println(animal.swim(10));
System.out.println(animal.swim(9));
System.out.println(animal.swim(11));
}
System.out.println("Animals: " + Animal.getCountOfAnimals());
}
}
class Dog extends Animal {
Dog(int runLimit, int swimLimit) {
super(runLimit, swimLimit);
}
}
class Cat extends Animal {
Cat(int runLimit, int swimLimit) {
super(runLimit, swimLimit);
}
Cat(int runLimit) {
super(runLimit, -1);
}
@Override
public String swim(int distance) {
return getClassName() + " no swim";
}
}
abstract class Animal implements IAnimal {
private int runLimit;
private int swimLimit;
private String className;
private static int countOfAnimals = 0;
Animal(int runLimit, int swimLimit) {
this.runLimit = runLimit;
this.swimLimit = swimLimit;
className = getClass().getSimpleName();
countOfAnimals++;
}
public String getClassName() {
return className;
}
public static int getCountOfAnimals() {
return countOfAnimals;
}
@Override
public String run(int distance) {
if (distance > runLimit) {
return className + ": ran distance " + distance + " м." + " - not reached";
} else {
return className + ": ran distance " + distance + " м." + " OK";
}
}
@Override
public String swim(int distance) {
if (distance > swimLimit) {
return className + " swim distance " + distance + " м." + " - not reached";
} else {
return className + ": swim distance " + distance + " м." + " OK";
}
}
@Override
public String toString() {
return className + " ran limit: " + runLimit + " м." + ", swim limit: " + swimLimit + " м.";
}
}
interface IAnimal {
String run(int distance);
String swim(int distance);
}