컴 파일 원리 - 할당 문 과 간단 한 표현 식 (1)

1262 단어 Java
Compile.java
package per.eyuan.compile;

import per.eyuan.util.ConstantTable;
import per.eyuan.util.FourItemStack;
import per.eyuan.util.IdentifierTable;
import per.eyuan.util.TemporaryTable;
import per.eyuan.util.TwoItem;
import per.eyuan.util.TwoItemStack;

public class Compile {
	IdentifierTable idt=new IdentifierTable();//    
	ConstantTable cont=new ConstantTable();//   
	TemporaryTable tt=new TemporaryTable();//     
	TwoItemStack tis=new TwoItemStack();//    
	FourItemStack fis=new FourItemStack();//    

	Initialise init=new Initialise();
	
	IO io=new IO();//     
	Lexical lex=new Lexical();//    
	Syntax syn=new Syntax();//    
	
	public void inverted(){
		TwoItemStack ntis=new TwoItemStack();
		ntis.push(new TwoItem("#","-"));
		//  
		int j=tis.getLength();
		for(int i=0;i

좋은 웹페이지 즐겨찾기