Import Java - Util.concurrent - Semapho
Import Java - Util.concurrent - Semapho
Semaphore;
class DiningPhilosophers {
@Override
public void run() {
try {
while (true) {
think();
takeForks();
eat();
putDownForks();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}