PL/0编译器(java version) – Symbol.java
1: package compiler;
2:
3: /**
4: * 采用全局变量sym来存储符号码,并用全局变量id和num来传递语义值
5: *
6: * @author jiangnan
7: *
8: */
9: public class Symbol {
10:
11: //各类符号码
12: public static final int nul = 0; //NULL
13: public static final int ident = 1; //标识符
14: public static final int plus = 2; //加号+
15: public static final int minus = 3; //减号-
16: public static final int mul = 4; //乘号*
17: public static final int div = 5; //除号/
18: public static final int oddsym = 6; //odd
19: public static final int number = 7; //数字
20: public static final int eql = 8; //等于号=(equal)
21: public static final int neq = 9; //不等于<>(not equal)
22: public static final int lss = 10; //小于<(less)
23: public static final int geq = 11; //大于等于>=(greater or equal)
24: public static final int gtr = 12; //大于>(greater)
25: public static final int leq = 13; //小于等于<=(less or equal)
26: public static final int lparen = 14; //左括号(
27: public static final int rparen = 15; //右括号 )
28: public static final int comma = 16; //逗号,
29: public static final int semicolon = 17; //分号;
30: public static final int peroid = 18; //句号.
31: public static final int becomes = 19; //赋值符号 :=
32: public static final int beginsym = 20; //开始符号begin
33: public static final int endsym = 21; //结束符号end
34: public static final int ifsym = 22; //if
35: public static final int thensym = 23; //then
36: public static final int whilesym = 24; //while
37: public static final int writesym = 25; //write
38: public static final int readsym = 26; //read
39: public static final int dosym = 27; //do
40: public static final int callsym = 28; //call
41: public static final int constsym = 29; //const
42: public static final int varsym = 30; //var
43: public static final int procsym = 31; //procedure
44: public static final int elsesym = 32;
45: public static final int repeatsym=33;
46: public static final int untilsym=34;
47:
48: //符号码的个数
49: public static final int symnum = 35;
50:
51: //设置保留字名字,按照字母顺序,便于折半查找
52: public static final String[] word = new String[]{
53: "begin","call" , "const" , "do" ,
54: "else" ,"end" ,"if" , "odd",
55: "procedure", "read","repeat","then",
56: "until" , "var", "while" , "write" };
57: //保留字对应的符号值
58: public static final int[] wsym = new int[]{
59: beginsym, callsym, constsym, dosym,
60: elsesym, endsym, ifsym,oddsym,
61: procsym,readsym,repeatsym, thensym,
62: untilsym ,varsym,whilesym, writesym};
63:
64: //符号码
65: public int symtype;
66: //标志符号名字;
67: public String id;
68: //数值的大小
69: public int num;
70:
71: /**
72: * 构造具有特定符号码的符号
73: *
74: * @param stype
75: */
76: public Symbol(int stype) {
77: symtype = stype;
78: id = "";
79: num = 0;
80: }
81: }
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
PL/0编译器(java version) – Symbol.java的更多相关文章
- PL/0编译器(java version) - MainFrame.java
1: /* 2: * To change this license header, choose License Headers in Project Properties. 3: * To chan ...
- PL/0编译器实践---后记
花了几天时间,把清华版的<编译原理>一书中的PL/0编译器实践了一遍.颇有收获,记录如下: 理解代码的技巧,如何理解一份代码,比如这个程序,其逻辑相对于一般程序就比较复杂了,如何翻译,虚拟 ...
- PL/0编译器(java version)–Praser.java
1: package compiler; 2: 3: import java.io.IOException; 4: import java.util.BitSet; 5: 6: /** 7: ...
- PL/0编译器(java version) – Scanner.java
1: package compiler; 2: 3: import java.io.BufferedReader; 4: import java.io.FileNotFoundException; ...
- PL/0编译器(java version) – SymbolTable.java
1: package compiler; 2: //竟然没有对符号表检查大小,会溢出的. 3: 4: import java.io.IOException; 5: 6: public clas ...
- PL/0编译器(java version)–PL0.java
1: package compiler; 2: 3: import java.io.BufferedWriter; 4: import java.io.FileWriter; 5: 6: /* ...
- PL/0编译器(java version) - Interpreter.java
1: package compiler; 2: 3: import java.io.BufferedReader; 4: import java.io.BufferedWriter; 5: imp ...
- PL/0编译器(java version) - Err.java
1: package compiler; 2: 3: import java.io.BufferedWriter; 4: 5: public class Err { 6: 7: publi ...
- PL/0编译器(java version)–Pcode.java
1: package compiler; 2: 3: /** 4: * //虚拟机指令 5: * 6: * @author jiangnan 7: * 8: */ 9: public class ...
随机推荐
- 在win8(win8.1)电脑上安装IIS,配置web服务器,发布网站
1.IIS安装: 打开控制面板——程序和功能——启用或关闭Windows功能——找到(Windows功能下)下的(Internet Infornation Services)把Web 管理工具和万维网 ...
- 如何阻止SELECT * 语句
我们每个人都知道是个不好的做法,但有时我们还是要这样做:我们执行SELECT * 语句.这个方法有很多弊端: 你从你的表里返回每个列,甚至后期加的列.想下如果你的查询里将来加上了VARCHAR(MAX ...
- SQL Server output子句用法 output inserted.id 获取刚插入数据的id
--插入数据,并返回刚刚插入的数据id INSERT INTO [soloreztest] ([name]) output inserted.id VALUES ('solorez') --执行结果: ...
- 转一篇关于Unity的PlayMaker
这篇文章转自http://va.lent.in/should-you-use-playmaker-in-production/ 此文作者大概深受其苦,吐槽了playmaker的多个蛋疼的地方,这其实说 ...
- Xen虚拟化基本原理详解
标签:虚拟化 xen 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://wangzan18.blog.51cto.com/80210 ...
- 【JQuery】 ajax 无效的JSON基元
[如题]个人理解就是 你向传数据[josn格式]了,但是后台接受确不是json格式的 数据, 贴段代码 var strJson = '{ "usercode": "123 ...
- import random 模块导入
import random print(random.random()) #浮点数值 print(random.randint(1,2))#循环显示1,2 print(random.randrange ...
- Java--剑指offer(5)
21.输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序.假设压入栈的所有数字均不相等.例如序列1,2,3,4,5是某栈的压入顺序,序列4,5,3,2,1是该压栈序列对 ...
- ubuntu下nginx的启停等常用命令
开发过程中,我们会经常的修改nginx的配置文件,每次修改配置文件都可以先测试下本次修改的配置文件是否正确,可以利用以下命令: ? 1 service nginx -t -c /alidata/ser ...
- httpclient提示Cookie rejected: violates RFC 2109: domain must start with a dot
使用httpclient时发生如下告警信息: WARN - HttpMethodBase.processResponseHeaders(1505) | Cookie rejected: "$ ...