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

📄 raid.java

📁 软件模拟RAID系统。。 。。 。
💻 JAVA
字号:
/****************************
 * Raid接口
 *****************************/

import java.io.IOException;


public  interface Raid {
	public int Capcity();
	public void capcity_Remained(int[]a);//实际剩余空间
	public int Cap_available();//可用剩余总空间
	public void ReadBlock() throws IOException;
	public void StoreBlock() throws IOException;
	public boolean Readable();
	public boolean Storeable();
	public void Recover(int downID)throws IOException;
}

⌨️ 快捷键说明

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