我想使用java库提供的信号量来实现这个经典的厕所入口问题。
场景是:有一个公共浴室,最多可供 4 名女性和 5 名男性使用,但不能同时使用。此外,虽然至少有一名女性在等待,但男性应该等待,这样女性才能更容易进入。
到目前为止,我已经为这个并发类建模......
public class Concurrencia {
Semaphore mujeres; // Semaphore for women, initialized in 4
Semaphore hombres; // Semaphore for men, initialized in 5
public Concurrencia (Semaphore mujeres, Semaphore hombres) {
this.mujeres = mujeres;
this.hombres = hombres;
}
public synchronized void EntradaHombres () { // Method for men's entrance
if ( mujeres.availablePermits() == 4 && !mujeres.hasQueuedThreads() ) {
System.out.println("Entró un hombre al baño"); // Man gets in
try { hombres.acquire(); } catch (InterruptedException ex) { }
}
else {
System.out.println("Hombre en espera"); // Man should wait
}
}
public synchronized void EntradaMujeres () { // Method for women's entrance
if ( hombres.availablePermits() == 5) {
System.out.println("Entró una mujer al baño"); // Woman gets in
try { hombres.acquire(); } catch (InterruptedException ex) { }
}
else {
System.out.println("Mujer en espera"); // Woman should wait
}
}
public synchronized void SalidaMujeres () {
System.out.println("Salió una mujer del baño");
mujeres.release(); // Woman gets out
}
public synchronized void SalidaHombres () {
System.out.println("Salió un hombre del baño");
hombres.release(); // Man gets out
}