编译原理——赋值语句和简单表达式(十)

常数。

Constant.java:

package per.eyuan.util;

public class Constant {
	int index;//eg. 0,1 begin from 0,和二元式中的item2(内码值)对应
	String type;//eg. int,float
	String value;//值,float或者int
	
	//构造函数
	public Constant(int index,String value){//给指定索引的标志符赋值
		this.index=index;
		this.value=value;
	}
	public Constant(){
		super();
	}
	//getter &setter
	public int getIndex() {
		return index;
	}
	public void setIndex(int index) {
		this.index = index;
	}
	public String getType() {
		return type;
	}
	public void setType(String type) {
		this.type = type;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	
}


 

你可能感兴趣的:(Java)