您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 编译原理实验报告--词法分析器
  所属分类: C
  开发工具:
  文件大小: 14kb
  下载次数: 0
  上传时间: 2009-06-23
  提 供 者: shi***
 详细说明: package analysis; import java.util.ArrayList; import java.util.List; import library.Digit; import library.KeyWords; import library.Symbol; /** * * @author 周弘懿 * */ public class AnalyseWords { private List temp = new ArrayList (); public List getTemp() { return temp; } /* 关键字或者标识符的长度。 */ private static final int LENGTHOFKEYWORDS = 500; /* 整型数据的长度。 */ private static final int LENGTHOFINT = 500; /* 字符串常量长度。 */ private static final int LENGTHOFSTRING = 1024; String result = ""; int position; /** * 处理程序 * * @return 词法分析后的结果 */ public void process(String aLine) { /* 存放关键字和标识符 */ byte[] word = new byte[LENGTHOFKEYWORDS]; /* 存放数字 */ byte[] number = new byte[LENGTHOFINT]; /* 存放运算符 */ byte[] symbol = new byte[500]; /* 存放字符串常数或是字符常数 */ byte[] string = new byte[LENGTHOFSTRING]; byte temp[]; temp = aLine.getBytes(); if(new String(temp).trim().length() == 0) this.temp.add("请输入C语言程序!"); /** * 主要逻辑 */ for (position = 0; position<= temp.length; position++) { if (position >= temp.length) { return; } /* 滤掉空格、制表键。 */ if (temp[position] != ' ' || temp[position] != '\t') { /* 允许大小写字母和下划线 */ if ((temp[position] >= 65 && temp[position] <= 90) || (temp[position] >= 97 && temp[position] <= 122) || temp[position] == '_') { position = analysisWord(position, word, temp); } else { // 如果是数字 if (temp[position] >= 48 && temp[position] <= 57) { position = analysisNum(position, number, temp); } // 如果是限界符 else if (Symbol.isLimitedSymblel(new String(temp, position, 1))) { position = analysisLimitSymble(position, string, temp); } //如果是以单个运算符组成 else if(Symbol.isSingleSymble(new String(temp, position, 1))) { position = analysisSingleSymble(position, symbol, temp); // if(Symbol.isComboSymbol(new String(temp, position, 2))); } } } } } /** * 分析关键字和标识符 * @param position 词法分析语句遍历指针 * @param word 存放关键字和标识符的数组 * @param temp 词法分析语句数组 * @return 返回词法分析语句遍历指针的新位置 */ public int analysisWord(int position, byte[] word, byte temp[]) { // 存储数组的指针 int tempPosition = -1; do { tempPosition++; word[tempPosition] = temp[position]; position++; if (position >= temp.length) /* 如果已经超过界限就终止循环。 */{ String checkdWord = new String(word, 0, tempPosition + 1); decideWord(checkdWord); return position; } } while ((temp[position] >= 65 && temp[position] <= 90) || (temp[position] >= 97 && temp[position] <= 122) || temp[position] == '_' || (temp[position] >= 48 && temp[position] <= 57));/* 结束于非大小写字母下划线和数字 */ String checkdWord = new String(word, 0, tempPosition + 1); decideWord(checkdWord); // 因为上面的已经移到末尾,因为for还要+1,所以要-1 position--; return position; } /** * 分析字段是关键字还是标识符 * @param checkdWord 分析字段 */ private void decideWord(String checkdWord) { if (KeyWords.isKeyWords(checkdWord)) this.temp.add("(" + checkdWord + ", 关键字)\n"); else this.temp.add("(" + checkdWord + ", 标识符)\n"); } /** * 分析数字 * @param position 词法分析语句遍历指针 * @param number 存放数字的数组 * @param temp 词法分析语句数组 * @return 返回词法分析语句遍历指针的新位置 */ public int analysisNum(int position, byte[] number, byte temp[]) { // 如果是数字 if (temp[position] >= 48 && temp[position] <= 57) { // 存储数组的指针 int tempPosition = -1; do { tempPosition++; number[tempPosition] = temp[position]; position++; if (position >= temp.length) /* 如果已经超过界限就终止循环。 */{ String checkdNumber = new String(number, 0, tempPosition + 1); decideNum(checkdNumber); return position; } } while (temp[position] >= '0' && temp[position] <= '9' || temp[position] == '.'); String checkdNumber = new String(number, 0, tempPosition + 1); decideNum(checkdNumber); // 因为上面的已经移到末尾,因为for还要+1,所以要-1 position--; } return position; } /** * 分析字段是实型还是整型常数 * @param checkdNumber 分析数字字段 */ private void decideNum(String checkdNumber) { if (Digit.hasDot(checkdNumber)) { try { double num = Double.parseDouble(checkdNumber); this.temp.add("(" + num + ", 实型常数)\n"); } catch (Exception e) { this.temp.add("(" + checkdNumber + ", 错误,发现多个.)\n"); } } else { try { long num = Long.parseLong(checkdNumber); this.temp.add("(" + num + ", 整型常数)\n"); } catch (Exception e) { this.temp.add("(" + checkdNumber + ", 错误,不是整型常数!)\n"); } } } /** * 分析字符常数,字符串常数和边界符 * @param position 词法分析语句遍历指针 * @param string 字符,字符串和边界符的数组 * @param temp 词法分析语句数组 * @return 返回词法分析语句遍历指针的新位置 */ public int analysisLimitSymble(int position, byte[] string, byte temp[]) { // 过滤字符串常数 if (temp[position] == '"') { // 存储数组的指针 int tempPosition = -1; do { tempPosition++; string[tempPosition] = temp[position]; position++; } while (temp[position] != '"'); //要把最后一个"给过滤掉,所以要向后移一个位置。 tempPosition++; string[tempPosition] = '"'; String checkdNumber=new String(string,0,tempPosition+1); this.temp.add("(" + checkdNumber + ", 字符串常数)\n"); } // 过滤字符常数 else if (temp[position] == '\'') { // 存储数组的指针 int tempPosition = -1; do { tempPosition++; string[tempPosition] = temp[position]; position++; } while (temp[position] != '\''); tempPosition++; string[tempPosition] = '\''; //要把最后一个"给过滤掉,所以要向后移一个位置。 String checkdNumber=new String(string,0,tempPosition+1); //c语言语法规定字符常量的字符数只能是1,再加上2个’,刚好应该是3。 if(tempPosition+1<=3) this.temp.add("(" + checkdNumber +", 字符常数)\n"); else this.temp.add("(" + checkdNumber +", 错误,字符长度仅限1位)\n"); } //过滤限界符 else { this.temp.add("(" + new String(temp, position, 1)+ ", 限界符)\n"); } return position; } /** * 分析运算符 * @param position 词法分析语句遍历指针 * @param symbol 运算符的数组 * @param temp 词法分析语句数组 * @return 返回词法分析语句遍历指针的新位置 */ public int analysisSingleSymble(int position, byte[] symbol, byte temp[]) { // 存储数组的指针 int tempPosition = -1; do{ tempPosition++; symbol[tempPosition] = temp[position]; //字符长度仅限1位 if(tempPosition >= 2) { this.temp.add("(" + new String(symbol,0,tempPosition+1)+ ", 错误,字符长度仅限2位)\n"); return position; } position++; if(position >= temp.length) /* 如果已经超过界限就终止循环。 */{ String checkdWord = new String(symbol, 0, tempPosition+1); position = decideSymble(checkdWord, temp, position); return position; } } while(Symbol.isSingleSymble(new String(temp, position, 1))); String checkdWord = new String(symbol, 0, tempPosition+1); //单个运算符可能组成符合运算符 position = decideSymble(checkdWord, temp, position); position--; return position; } private int decideSymble(String checkdWord, byte temp[], int position) { if(Symbol.isComboSymbol(checkdWord)) { this.temp.add("(" + checkdWord + ", 复合运算符)\n"); } else if(Symbol.isSingleSymble(checkdWord)) { this.temp.add("(" + checkdWord + ", 运算符)\n"); }else if(checkdWord.equals("/*")) { //过滤注释 this.temp.add("(" + checkdWord + ", 前注释)\n"); do { position++; if(position >= temp.length) { return position; } } while(temp[position] != '*'); /* 直到阅读到*,表示将其间的注释都过滤 */ position++; if(position>=temp.length) { /*如果已经超过界限就终止循环。*/ this.temp.add("错误,后注释缺少结束符'/'\n"); return position; } if(temp[position]!='/') { this.temp.add("错误,后注释缺少结束符'/'\n"); } else { this.temp.add("(" + new String(temp, position-1, 2) + ", 后注释 )\n"); return position-1; } } return position; } public static void main(String[] args) { AnalyseWords aw = new AnalyseWords(); aw.process("sd"); for (String str : aw.temp) { System.out.println(str); } } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: 编译原理
 输入关键字,在本站1000多万海量源码库中尽情搜索: