forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSentenseNode.cs
31 lines (28 loc) · 840 Bytes
/
SentenseNode.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Interpreter
{
/// <summary>
/// 非终结符表达式:简单句子解释
/// </summary>
public class SentenseNode : AbstractNode
{
private AbstractNode direction;
private AbstractNode action;
private AbstractNode distance;
public SentenseNode(AbstractNode direction, AbstractNode action, AbstractNode distance)
{
this.direction = direction;
this.action = action;
this.distance = distance;
}
// 简单句子解释操作
public override string Interpret()
{
return direction.Interpret() + action.Interpret() + distance.Interpret();
}
}
}