您的位置:首页 > 其它

编译原理——变量声明语句(十三)

2012-03-30 22:27 375 查看
四元式。

代码:

FourItem.java:

package per.eyuan.util;

public class FourItem {
String op;
String arg1;
String arg2;
String result;

public FourItem(String op, String arg1, String arg2, String result) {
super();
this.op = op;
this.arg1 = arg1;
this.arg2 = arg2;
this.result = result;
}

public FourItem() {
super();
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: