forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectionNode.cs
47 lines (43 loc) · 1.14 KB
/
DirectionNode.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Interpreter
{
/// <summary>
/// 终结符表达式:方向解释
/// </summary>
public class DirectionNode : AbstractNode
{
private string direction;
public DirectionNode(string direction)
{
this.direction = direction;
}
// 方向表达式的解释操作
public override string Interpret()
{
string result = string.Empty;
switch (direction.ToLower())
{
case "up":
result = "向上";
break;
case "down":
result = "向下";
break;
case "left":
result = "向左";
break;
case "right":
result = "向右";
break;
default:
result = "无效命令";
break;
}
return result;
}
}
}