constpair.java.svn-base

来自「北航编译原理课程设计成果——一个扩充的C0文法编译器」· SVN-BASE 代码 · 共 28 行

SVN-BASE
28
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cn.edu.buaa.scse.liyi.test;/** *  * @author liyi */public class Constpair{	public String name;	public String value;	public Constpair(String name,String value)	{		this.name=name;		this.value=value;	}		@Override	public String toString()	{		return(this.name+" "+this.value);	}}

⌨️ 快捷键说明

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