- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInstrumentMain.java
More file actions
Latest commit
64 lines (60 loc) · 1.63 KB
/
Copy pathInstrumentMain.java
File metadata and controls
64 lines (60 loc) · 1.63 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
abstractclassInstrument
{
publicabstractvoidPlay();
}
classPianoextendsInstrument
{
publicvoidPlay()
{
System.out.println("Piano is playing tan tan tan tan");
}
}
classFluteextendsInstrument
{
publicvoidPlay()
{
System.out.println("Flute is playing toot toot toot toot ");
}
}
classGuitarextendsInstrument
{
publicvoidPlay()
{
System.out.println("Guitar is playing tin tin tin");
}
}
classInstrumentMain {
publicstaticvoidmain(Stringargs[]) {
InstrumentA[] = newInstrument[10];
for (inti = 0; i< 10; i++) {
switch (i % 3)
{
case0: {
A[i] = newPiano();
break;
}
case1: {
A[i] = newFlute();
break;
}
case2: {
A[i] = newGuitar();
break;
}
}
}
for (inti = 0; i < 10; i++) {
System.out.println((i + 1));
A[i].Play();
if (A[i] instanceofPiano) {
System.out.println("Piano");
}
if (A[i] instanceofFlute) {
System.out.println("Flute");
}
if (A[i] instanceofGuitar) {
System.out.println("Guitar");
}
}
}
}