-
Notifications
You must be signed in to change notification settings - Fork 0
/
qb34.java
52 lines (43 loc) · 1014 Bytes
/
qb34.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
//QB-34
interface transport {
void deliver();
}
abstract class animal {
abstract void sound();
}
class tiger extends animal {
void sound() {
System.out.println("Tiger Roars");
}
}
class camel extends animal implements transport {
public void deliver() {
System.out.println("Camel delivers goods");
}
void sound() {
System.out.println("Camel sound");
}
}
class deer extends animal {
void sound() {
System.out.println("Deer sound");
}
}
class donkey extends animal implements transport {
public void deliver() {
System.out.println("Donkey delivers goods");
}
void sound() {
System.out.println("Donkey sound");
}
}
class Main {
public static void main(String[] args) {
animal[] an = { new tiger(), new camel(), new deer(), new donkey() };
for (animal ani : an) {
if (ani instanceof transport) {
((transport) ani).deliver();
}
}
}
}