forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContext.cs
76 lines (67 loc) · 1.91 KB
/
Context.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Interpreter
{
/// <summary>
/// 环境类:用于存储和操作需要解释的语句,
/// 在本实例中每一个需要解释的单词都可以称为一个动作标记(ActionToker)或命令
/// </summary>
public class Context
{
private int index = -1;
private string[] tokens;
private string currentToken;
public Context(string text)
{
text = text.Replace(" ", " ");
tokens = text.Split(' ');
NextToken();
}
// 获取下一个标记
public string NextToken()
{
if (index < tokens.Length - 1)
{
currentToken = tokens[++index];
}
else
{
currentToken = null;
}
return currentToken;
}
// 返回当前的标记
public string GetCurrentToken()
{
return currentToken;
}
// 跳过一个标记
public void SkipToken(string token)
{
if (!token.Equals(currentToken, StringComparison.OrdinalIgnoreCase))
{
Console.WriteLine("错误提示:{0} 解释错误!", currentToken);
}
NextToken();
}
// 如果当前的标记是一个数字,则返回对应的数值
public int GetCurrentNumber()
{
int number = 0;
try
{
// 将字符串转换为整数
number = Convert.ToInt32(currentToken);
}
catch (Exception ex)
{
Console.WriteLine("错误提示:{0}", ex.Message);
}
return number;
}
}
}