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

📄 function.java

📁 C0文法的编译器
💻 JAVA
字号:
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 lilac */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<Four> 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<Four>();        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 + -