-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathProgram.RealWordCode.cs
52 lines (46 loc) · 1.27 KB
/
Program.RealWordCode.cs
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
using System;
namespace DoFactory.GangOfFour.Command.RealWorld
{
/// <summary>
/// MainApp startup class for Real-World
/// Command Design Pattern.
/// </summary>
class MainApp
{
/// <summary>
/// Entry point into console application.
/// </summary>
static void Main()
{
// Create user and let her compute
User user = new User();
// User presses calculator buttons
user.Compute('+', 100);
user.Compute('-', 50);
user.Compute('*', 10);
user.Compute('/', 2);
// Undo 4 commands
user.Undo(4);
// Redo 3 commands
user.Redo(3);
// Wait for user
Console.ReadKey();
}
}
}
/*
OUTPUT:
Current value = 100(following + 100)
Current value = 50(following - 50)
Current value = 500(following * 10)
Current value = 250(following / 2)
---- Undo 4 levels
Current value = 500 (following* 2)
Current value = 50(following / 10)
Current value = 100(following + 50)
Current value = 0(following - 100)
---- Redo 3 levels
Current value = 100 (following + 100)
Current value = 50(following - 50)
Current value = 500(following * 10)
*/