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

📄 cell.java.svn-base

📁 java写的一个模拟cpu程序
💻 SVN-BASE
字号:
/**
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -