资源简介
,同步互斥P、V操作。理发店里有5把椅子,顾客进来理发,此时理发师在睡觉,顾客叫醒理发师开始理发,再有顾客进来就在椅子上等候,如果没有椅子了,就离开

代码片段和文件信息
public class idb02251210
{
public static void main(String args[])
{
//Here is the main function
System.out.println(“This is a barber shop with 5 chairs for waiting.“);
System.out.println(“Here is 20 customers want to barber.“);
System.out.println(“Firstthe barber is sleeping for there is no customer.“);
Database server = new Database();
Barber[] barberArray = new Barber[NUM_OF_BARBER];
for (int i = 0; i < NUM_OF_BARBER; i++)
{
barberArray[i] = new Barber(i server);
barberArray[i].start();
try {//this try is for controling the speed of everyone who go into the barber shop
barberArray[i].sleep(1000-20*i);
}
catch (InterruptedException f) {
}
}
}
private static final int NUM_OF_BARBER = 20;
}
class Database
{
public Database() {//set the data
waitCount = 0;
maxCustomer = 5;
mutex = new Semaphore(1);
db = new Semaphore(maxCustomer + 1);
}
// customers and barber will call this to nap
public static void napping() {
int sleepTime = (int) (NAP_TIME * Math.random() );
try { Thread.sleep(sleepTime*100); }
catch(InterruptedException e) {}
}
public int startWait() {//customers begin to go into the barber shop
db.P();
++waitCount;//the number of customers add one
System.out.println(“There are “ + waitCount + “ chairs occupied.“);
if (waitCount < maxCustomer)
{ mutex.P();}
waitCount--;
db.V();//the number of customers substract one
return waitCount;
}
public int endWait() {//there are no cuostomers and barber begin to sleep
db.P();
if (waitCount == 0)
{
System.out.println(“The barber begin to sleep again.“);
}
mutex.V();
db.V();
System.out.println(“There are “ + waitCount + “ chairs occupied.“);
return waitCount;
}
private int waitCount;
public int maxCustomer;
Semaphore mutex; // controls access to readerCount
Semaphore db; // controls access to the database
private static final int NAP_TIME = 25;
}
class Barber extends Thread
{
public Barber(int r Database db)
{
barberNum = r;
server = db;
isFull = false;
}
public void run()
{
int c;
while (true)//people is begin the detail behavior
{
//System.out.println(“customer-“ + barberNum + “ is going.“);
Database.napping();
System.out.println(“customer-“ + barberNum + “ enter shop.“);
c = server.startWait();
if(c >= server.maxCustomer)
{
System.out.println(“customer-“ + barberNum + “have to go away for no chairs.“);
isFull = true;
}
// you have access to have barbering
if(c < server.maxCustomer)
{
System.out
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4001 2004-06-10 22:43 SleepingBarber.java
----------- --------- ---------- ----- ----
4219 2
- 上一篇:数据结构大作业贪吃蛇和实验报告
- 下一篇:A*最短路径算法 最短路径
相关资源
- 操作系统c语言模拟文件管理系统844
- 操作系统课设 读写者问题 c语言实现
- ROS操作系统入门讲义
- Linux操作系统下C语言编程从零开始
- 操作系统存储管理实验报告c/c++
- 操作系统课程设计(银行家算法)附
- 现代操作系统第三版高清
- C++操作系统课设-进程管理
- 哲学家进餐问题的c++模拟实现
- 操作系统课程设计(生产者-消费者存
- 操作系统——5个实验.zip
- 操作系统进程管理实验
- 操作系统—页面置换算法C++实现
- 操作系统 内存管理 模拟 图形界面
- 银行家算法 mfc 含源代码 界面 操作系
- 操作系统生产者消费者问题MFC动态实
- 操作系统课程设计:Windows 命令接口之
- 操作系统课程大作业-文件管理系统
- C语言实现最低松弛度优先算法源代码
- 操作系统信号量PV经典问题:沉睡的理
- 基于C++的银行家算法模拟实现
- 生产者消费者问题源码-MFC实现-进程模
- 操作系统实验 进程调度 高响应比优先
- 操作系统文件管理C++代码实现
- 嗜睡的理发师进程同步与实现c++
- 安徽大学操作系统实验八基于扫描的
- 安徽大学操作系统实验四主存空间的
- 操作系统——银行家算法
- 操作系统_生产者消费者c++、mfc实现
- 磁盘调度c++模拟实现计算机操作系统
评论
共有 条评论