Team Beck (Ece, Merve²) übernehmen zusammen mit Paul das Universum .·:*¨༺ ༻¨*:·.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Table.java 669B

1234567891011121314151617181920
  1. package praktikum04;
  2. public class Table {
  3. public static void main(String[] args) {
  4. Fork[] forks = { new Fork(0), new Fork(1), new Fork(2),
  5. new Fork(3), new Fork(4)};
  6. Philosopher[] philosophers = {
  7. new Philosopher(0, forks[0], forks[1]),
  8. new Philosopher(1, forks[1], forks[2]),
  9. new Philosopher(2, forks[2], forks[3]),
  10. new Philosopher(3, forks[3], forks[4]),
  11. new Philosopher(4, forks[4], forks[0])
  12. };
  13. for (Philosopher philosopher : philosophers) {
  14. Thread t = new Thread(philosopher);
  15. t.start();
  16. }
  17. }
  18. }