1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
| public class PrintOddEvenReentrant { private static int MAX_COUNT = 10; private static int num = 1; private static ReentrantLock lock = new ReentrantLock(); private static Condition odd = lock.newCondition(); private static Condition even = lock.newCondition();
public static void printOdd() { for (int i = 0; i < MAX_COUNT; i++) { lock.lock(); try { while (num % 2 != 1) { odd.await(); } System.out.println(Thread.currentThread().getName() + ": " + num); num++; even.signal(); } catch (InterruptedException e) { throw new RuntimeException(e); } finally { lock.unlock(); } } }
public static void printEven() { for (int i = 0; i < MAX_COUNT; i++) { lock.lock(); try { while (num % 2 != 0) { even.await(); } System.out.println(Thread.currentThread().getName() + ": " + num); num++; odd.signal(); } catch (InterruptedException e) { throw new RuntimeException(e); } finally { lock.unlock(); } } }
public static void main(String[] args) throws InterruptedException { Thread threadA = new Thread(new Runnable() { @Override public void run() { printOdd(); } }, "Thread-a");
Thread threadB = new Thread(new Runnable() { @Override public void run() { printEven(); } }, "Thread-b");
threadA.start(); threadB.start();
threadA.join(); threadB.join(); } }
|