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 66 67 68 69 70
|
public class TestThreads {
public Thread a = new A();
public Thread b = new B();
public Object lock = new Object();
class A extends Thread {
public void run() {
synchronized (lock) {
System.out.println("A démarre et prend le lock ...");
/*
* A demarre B
*/
b.start();
while (b.isAlive()) {
try {
System.out.println("A est en action...");
sleep(200);
lock.notifyAll();
lock.wait();
} catch (InterruptedException e) {
System.out.println("A a été interrompu par un autre Thread");
break;
}
}
lock.notifyAll(); // Notifier ...Je n'ai plus besoin du lock
}
System.out.println("A STOP");
}
}
class B extends Thread {
public void run() {
try {
synchronized (lock) {
System.out.println("B démarre et prend le lock ...");
for (int i = 0; i < 10; i++) {
System.out.println("B est en action "+(i+1)+"e X ...");
sleep(100);
lock.notifyAll();
lock.wait();
}
lock.notifyAll(); // Notifier ...Je n'ai plus besoin du lock
}
} catch (InterruptedException e) {
System.out.println("B a été interrompu par un autre Thread");
}
System.out.println("B STOP");
}
}
public static void main(String[] args) {
TestThreads test = new TestThreads();
test.a.start();
}
} |
Partager