⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function.java.svn-base

📁 北航编译原理课程设计成果——一个扩充的C0文法编译器
💻 SVN-BASE
字号:
package cn.edu.buaa.scse.liyi.test;import java.util.LinkedList;/* * To change this template, choose Tools | Templates * and open the template in the editor. */import java.util.TreeMap;import java.util.Vector;/** *  * @author liyi */public class Function{	public static final int R_VOID=0;	public static final int R_INT=1;	public String name;	public Vector<String> para=null;	public Vector<String> var=null;	public LinkedList<Quadruple> fourlist=null;	public Vector<Constpair> con=null;	public int retype;	public TreeMap<String,Integer> pmap=null;	public TreeMap<String,Integer> vmap=null;		public Function(String name,int retype)	{		this.name=name;		this.retype=retype;		this.fourlist=new LinkedList<Quadruple>();		this.con=new Vector<Constpair>();		this.para=new Vector<String>();		this.var=new Vector<String>();		this.pmap=new TreeMap<String,Integer>();		this.vmap=new TreeMap<String,Integer>();	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -