资源简介
简单代码解释器
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
namespace TestInterpreter
{
public abstract class Abstractexpression
{
public abstract void Interpret(Context context);
}
public class Terminalexpression : Abstractexpression
{
public override void Interpret(Context context)
{
Console.WriteLine(“终端解释器“);
}
}
public class Nonterminalexpression : Abstractexpression
{
public override void Interpret(Context context)
{
Console.WriteLine(“非终端解释器“);
}
}
public class Context
{
private string input;
private string output;
public string Input
{
get { return input; }
set { input = value; }
}
public string Output
{
get { return output; }
set { output = value; }
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
.CA.... 919 2012-03-17 14:12 TestInterpreter.sln
.CA..H. 8192 2012-03-17 14:12 TestInterpreter.suo
.CA.... 6144 2012-03-17 15:48 bin\Debug\TestInterpreter.exe
.CA.... 19968 2012-03-17 15:48 bin\Debug\TestInterpreter.pdb
.CA.... 14328 2012-03-17 15:48 bin\Debug\TestInterpreter.vshost.exe
.CA.... 490 2007-07-21 01:33 bin\Debug\TestInterpreter.vshost.exe.manifest
.CA.... 356 2012-03-17 15:48 obj\Debug\TestInterpreter.csproj.FileListAbsolute.txt
.CA.... 6144 2012-03-17 15:48 obj\Debug\TestInterpreter.exe
.CA.... 19968 2012-03-17 15:48 obj\Debug\TestInterpreter.pdb
.CA.... 1380 2012-03-17 14:12 Properties\AssemblyInfo.cs
.CA.... 1004 2012-03-17 15:03 Abstractex
.CA.... 779 2012-03-17 15:46 ex
.CA.... 944 2012-03-17 15:49 Program.cs
.CA.... 2214 2012-03-17 15:43 TestInterpreter.csproj
.C.D... 0 2012-03-17 14:12 obj\Debug\TempPE
.C.D... 0 2012-03-17 15:01 bin\Debug
.C.D... 0 2012-03-17 15:48 obj\Debug
.C.D... 0 2012-03-17 14:12 bin
.C.D... 0 2012-03-17 14:12 obj
.C.D... 0 2012-03-17 14:12 Properties
----------- --------- ---------- ----- ----
82830 20
相关资源
- 在Linux环境下模拟实现简单命令解释器
- 飞机订票系统 简单代码
- lua5.3解释器
- springboot工程基于netty-socketio的 web推送
- 编写自己的Shell解释器 编写自己的S
- 简单的shell解释器
- stm32-grbl-g代码解释器
- 易语言自删除安装简单代码
- 开源basic解释器
- 完整cmm解释器构造实践 四 :语义分析
- Linux C 简单Shell 的实现
- 桂浩 解释器构造实验2
- BrainFuck语言解释器及一些demo
- linux下模拟实现命令解释器shell
- 在Linux环境下模拟实现命令解释器
- 在Linux环境下模拟实现命令解释器
- 完整cmm解释器构造实践 二 词法分析
评论
共有 条评论