程序的执行从类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: }