-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainClazz.java
57 lines (52 loc) · 1.05 KB
/
MainClazz.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
/*
Java DO NOT HAVE multiple inheritance
No MRO characteristic
*/
import java.lang.System.*;
class Robot
{
public void move_forward()
{
System.out.println("Physical Movement! Moving forward");
}
public void move_backward()
{
System.out.println("Physical Movement! Moving backward");
}
};
class CleaningRobot extends Robot
{
public void clean(int times)
{
for(int i=0; i<times; i++)
{
super.move_forward();
super.move_backward();
}
}
};
class MockBot extends Robot
{
public void move_forward()
{
System.out.println("forward");
}
public void move_backward()
{
System.out.println("backward");
}
};
/*
class MockCleaningRobot extends CleaningRobot, MockBot
{
};
*/
public class MainClazz
{
public static void main(String args[])
{
//MockCleaningRobot bot = new MockCleaningRobot();
CleaningRobot bot = new CleaningRobot();
bot.clean(10);
}
}