cell.java.svn-base

来自「java写的一个模拟cpu程序」· SVN-BASE 代码 · 共 44 行

SVN-BASE
44
字号
/**
 * Cell.java
 * 
 * 
 * @author 詹道楠
 * @date 2008-5-6
 */

package execute;

public abstract class Cell {
	
	private int type;
	
	public Cell(int type) {
		
		this.type = type;
		
	}
	
	/**
	 * Return the type.
	 */
	
	public int getType() {
	
		return type;
	
	}

	/**
	 * Reset the type.
	 */
	
	public void setType(int type) {
	
		this.type = type;
	
	}

	public abstract String toString();

}

⌨️ 快捷键说明

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