资源简介
资源有三种,线程数为5,适合各种课程设计作业和参考学习
代码片段和文件信息
package com.cch.entity;
import java.util.Scanner;
public class Banker {
static int available[] = new int[3]; // 资源数
static int max[][] = new int[5][3]; // 最大需求
static int allocation[][] = new int[5][3]; // 分配
static int need[][] = new int[5][3]; // 需求
static int request[] = new int[3]; // 存放请求
Scanner scanner = new Scanner(System.in);
int thread; // 线程号
// 初始化
public void getData() {
System.out.println(“请输入ABC三类资源的数目:“);
// 输入ABC三类资源数量
for (int i = 0; i < 3; i++) {
available[i] = scanner.nextInt();
}
// 输入进程对三类资源的最大需求
for (int i = 0; i < 5; i++) {
System.out.println(“请输入进程“ + i + “对ABC三类资源的最大需求“);
for (int j = 0; j < 3; j++) {
max[i][j] = scanner.nextInt();
}
}
// 输入进程分配的三类资源数
for (int i = 0; i < 5; i++) {
System.out.println(“请输入进程“ + i + “已分配的ABC三类资源数“);
for (int j = 0; j < 3; j++) {
allocation[i][j] = scanner.nextInt();
}
}
// 计算进程还需要的三类资源数
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 3; j++) {
need[i][j] = max[i][j] - allocation[i][j];
}
}
// 重新计算available
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 5; j++) {
available[i] -= allocation[j][i];
}
}
}
// 用户输入要申请资源的线程和申请的资源,并进行判断
public void getThread() {
System.out.println(“请输入申请资源的线程“);
int thread = scanner.nextInt(); // 线程
if (thread < 0 || thread > 4) {
System.out.println(“该线程不存在请重新输入“);
getThread();
} else {
this.thread = thread;
System.out.println(“请输入申请的资源(三种,若某种资源不申请则填0)“);
for (int i = 0; i < 3; i++) {
request[i] = scanner.nextInt();
}
if (request[0] > need[thread][0] || request[1] > need[thread][1] || request[2] > need[thread][2]) {
System.out.println(thread + “线程申请的资源超出其需要的资源,请重新输入“);
getThread();
} else {
if (request[0] > available[0] || request[1] > available[1] || request[2] > available[2]) {
System.out.println(thread + “线程申请的资源大于系统资源,请重新输入“);
getThread();
}
}
changeData(thread);
if (check(thread)) {
getThread();
} else {
recoverData(thread);
getThread();
}
}
}
// thread线程请求响应后,试探性分配资源
public
相关资源
- fastdfs-client-1.26上传
- J2EE期末复习题汇总
- 数据挖掘Kmeans算法源代码 Java
- Java 字符/字母 雨
- Java 爬虫图片
- 学生信息管理系统 java 、mysql
- java多线程实现坦克大战游戏带声音图
- java学生信息管理系统+代码
- 一个纯jsp+Javabean+mysql的学生信息管理
- 剑指offer(Java版)109892
- Java简易聊天程序
- 文本编辑器源代码 java
- leetcode java题解
- jd-gui.rar
- 我的Java简历 ,写的很详细
- jsp+servlet+javabean+ajax MVC模式,增删改查
- java开发安卓软件
- 基于java的射击类游戏
- 方正国际java笔试 2013.2
- Log4jTest.zip
- Registered.java
- JAVA互联网.txt
- JavaMail实现邮件发送的简单封装(包括
- 用Java实现的简单井字棋游戏
- java调用打印机
- 基于国密SM2加解密(JAVA版)
- 基于Java开发的网络五子棋源码
- 课程设计模拟幸运52游戏java实现
- java web 购物车代码
- 医院门诊管理系统
评论
共有 条评论