- 47
- 0
- 约4.73千字
- 约 12页
- 2019-05-05 发布于贵州
- 举报
天津理工大学操作系统实验报告(共10篇)
实验报告 学院名称:计算机与通信工程学院 第1页共13页 【实验过程记录】源程序: //磁盘调度基类: import;import;import; publicabstractclassDiskSchedule{ publicintgetStart(){} publicvoidsetStart(intstart){} publicintgetEnd(){} publicvoidsetEnd(intend){} publicintgetSector(){} 第2页共13页 intstart,end;intstartSector;booleanisScheduled;ArrayListsector;ArrayListscheduled;ArrayListtime; publicDiskSchedule(){} start=0;end=255;startSector=0; sector=newArrayList();scheduled=newArrayList();time=newArrayList();isScheduled=false; returnstart; =start; returnend; =end; Randomrand=newRando
原创力文档

文档评论(0)