资源简介
操作系统实验:实现动态分区分配模拟实验 JAVA实现,源代码
代码片段和文件信息
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class BestChoice
{
public void run() throws Exception
{
int MAX = 1000;
PCB[] pcb = new PCB[MAX+1];
pcb[0] = new PCB(000MAX);
pcb[1000] = new PCB(000MAX);
InputStreamReader read = new InputStreamReader(System.in);
BufferedReader input = new BufferedReader(read);
System.out.print(“初始状态下 可用 内存空间为 :“);
String line = input.readLine();
int count = Integer.parseInt(line);
pcb[MAX].start = count;
pcb[MAX].end = count;
System.out.println(“空闲内存:“);
System.out.println(0+“--“+count);
while (true)
{
System.out.println(“请输入操作:A为申请内存 R为释放内存.“);
line = input.readLine();
String str[] = line.split(“ “);
if (str.length == 3)
{
if(!str[0].equalsIgno
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-11-30 13:12 代码\
文件 2239 2011-11-30 13:12 代码\BestChoice.class
文件 2204 2011-11-30 13:10 代码\BestChoice.java
文件 2120 2011-11-30 13:12 代码\FirstChoice.class
文件 1986 2011-11-30 13:10 代码\FirstChoice.java
文件 1151 2011-11-30 13:12 代码\MainFun.class
文件 657 2011-11-30 13:10 代码\MainFun.java
文件 377 2011-11-30 13:12 代码\PCB.class
文件 246 2011-11-30 13:10 代码\PCB.java
文件 2238 2011-11-30 13:12 代码\WorstChoice.class
文件 2209 2011-11-30 13:10 代码\WorstChoice.java
文件 12 2011-11-30 13:12 代码\运行.bat
- 上一篇:apollo 源码需要的jar包
- 下一篇:jsp 招聘项目
评论
共有 条评论