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的更多相关文章

  1. PL/0编译器(java version) - MainFrame.java

    1: /* 2: * To change this license header, choose License Headers in Project Properties. 3: * To chan ...

  2. PL/0编译器实践---后记

    花了几天时间,把清华版的<编译原理>一书中的PL/0编译器实践了一遍.颇有收获,记录如下: 理解代码的技巧,如何理解一份代码,比如这个程序,其逻辑相对于一般程序就比较复杂了,如何翻译,虚拟 ...

  3. PL/0编译器(java version)–Praser.java

    1: package compiler; 2:   3: import java.io.IOException; 4: import java.util.BitSet; 5:   6: /** 7: ...

  4. PL/0编译器(java version) – Scanner.java

    1: package compiler; 2:   3: import java.io.BufferedReader; 4: import java.io.FileNotFoundException; ...

  5. PL/0编译器(java version) – SymbolTable.java

    1: package compiler; 2: //竟然没有对符号表检查大小,会溢出的. 3:   4: import java.io.IOException; 5:   6: public clas ...

  6. PL/0编译器(java version)–PL0.java

    1: package compiler; 2:   3: import java.io.BufferedWriter; 4: import java.io.FileWriter; 5:   6: /* ...

  7. PL/0编译器(java version) - Interpreter.java

    1: package compiler; 2:   3: import java.io.BufferedReader; 4: import java.io.BufferedWriter; 5: imp ...

  8. PL/0编译器(java version) - Err.java

    1: package compiler; 2:   3: import java.io.BufferedWriter; 4:   5: public class Err { 6:   7: publi ...

  9. PL/0编译器(java version)–Pcode.java

    1: package compiler; 2:   3: /** 4: * //虚拟机指令 5: * 6: * @author jiangnan 7: * 8: */ 9: public class ...

随机推荐

  1. ffmpeg在shell循环中只执行一次问题

    最近写了一个shell脚本,发现 ffmpeg 命令只执行了一次就停了,最后找到原因: ffmpeg有时会读取标准输入流,导致命令出错,解决办法是在ffmpeg命令之后添加 #xxx ffmpeg x ...

  2. (译文)MVC通用仓储类

    Generic Repository Pattern MVC Generic Repository Pattern MVC 原文链接:http://www.codeproject.com/Articl ...

  3. web安全——应用(java)

    简介 由于网络技术日趋成熟,黑客们也将注意力从以往对网络服务器的攻击逐步转移到了对web应用的攻击.据最新调查,信息安全有75%都发生在web应用而非网络层面. 场景 控制访问的权限.只让可以访问的访 ...

  4. Bootstrap系列 -- 9. 表格

    一. Bootstrap 表格样式支持 Bootstrap提供了六种不同风格的样式支持,其中一个基础样式,4个附件样式,1个响应式设计样式 1. .table:基础表格 2. .table-strip ...

  5. win8/8.1 免密码登录设置

    http://www.ehow.com/how_8013338_start-windows-password.html 原文见上方链接 1,win+r调出命令输入窗口,输入 netplwiz 回车 2 ...

  6. 外网不能访问部署在虚机的NodeJs网站(80端口)

    外网能访问部署在虚机的NodeJs网站需注意如下: 在管理门户上配置端点(Http 80->80) 在虚机中的防火墙入站规则中增加应用程序Node.exe的允许规则 启动NodeJs的侦听进程时 ...

  7. 中间件(middlebox)

    Middleboxes (also known as network functions) are systems that perform sophisticated and often state ...

  8. 深入理解拉格朗日乘子法(Lagrange Multiplier) 和KKT条件

    [整理]   在求解最优化问题中,拉格朗日乘子法(Lagrange Multiplier)和KKT(Karush Kuhn Tucker)条件是两种最常用的方法.在有等式约束时使用拉格朗日乘子法,在有 ...

  9. scrollLeft的相关问题(js横向无缝滚动)

    <div id="demo"> <div id="innerdemo"> <div id="demo1"> ...

  10. 十天冲刺---Day1

    站立式会议 由于第一天冲刺,所以有些没有昨天完成项和遇到的问题. 站立式会议内容总结: git上Issues内容: 燃尽图(做错了,将每天的燃尽图误以为是每天添加任务然后到一天结束后生成燃尽图(?)) ...