Ejemplo n.º 1
0
 @Override
 public void run() {
   while (running) {
     System.out.println("Philosopher #" + getID() + " is thinking...");
     sleep(rand(50, 150));
     System.out.println("Philosopher #" + getID() + " is hungry...");
     left.pickUp(this);
     sleep(rand(5, 15));
     right.pickUp(this);
     System.out.println("Philosopher #" + getID() + " is eating...");
     sleep(rand(50, 150));
     right.drop();
     sleep(rand(5, 15));
     left.drop();
   }
 }