A.2 Main

  程序的执行从类Main的方法main开始。方法main创建了一个词法分析器和一个语法分析器,然后调用语法分析器中的方法program。

   1:  package main;
   2:  import java.io.*;
   3:  import lexer.*;
   4:  import praser.*;
   5:  public class Main{
   6:    public static void main(String[] args)throws IOException{
   7:      Lexer lex = new  Lexer();
   8:      Praser prase = new Praser(lex);
   9:      praser.program();
  10:      System.out.write('\n');
  11:    }
  12:  }
posted @ 2014-01-17 19:57  姜楠  阅读(501)  评论(0编辑  收藏  举报