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

📄 store.java

📁 实验操作系统课程设计中有关进程管理、内存管理、资源分配、银行家算法等要求。可视化动态界面。
💻 JAVA
字号:

public class Store {
	private int num;
	private int length;
	private int address;
	private boolean use;
	
	public Store(){
	}
	public void setnum(int i){
		this.num = i;
	}
	public int getnum(){
		return num;
	}
	
	public void setlength(int i){
		this.length = i;
	}
	public int getlength(){
		return length;
	}
	
	public void setaddress(int i){
		this.address = i;
	}
	public int getaddress(){
		return address;
	}
	
	public void setuse(boolean b){
		this.use = b;
	}
	public boolean getuse(){
		return use;
	}
}

⌨️ 快捷键说明

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