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
|
public class PingPongC {
public static void main (String[] args) {
final Object moniteur = new Object() ;
Thread patience = new Thread() {
public void run() {
while(!isInterrupted()) {
synchronized(moniteur) {
System.out.println();
for(int iy = 0 ; iy <5 ; iy++){
System.out.print(" PONG") ;
}
moniteur.notify() ;
try {
moniteur.wait() ;
} catch(InterruptedException exc){
break;
}
}
}
System.out.println("\nplus de patience") ;
}
};
patience.start() ;
// Début des actions
for(int ix = 0 ; ix < 50 ; ix ++) {
synchronized(moniteur) {
System.out.print("\n\t");
for(int iy = 0 ; iy <5 ; iy++){
System.out.print(" PING") ;
}
moniteur.notify() ;
try {
moniteur.wait() ;
} catch(InterruptedException exc){
/*IGNORE*/
}
}
}
patience.interrupt() ;
try {
patience.join() ;
System.out.println("arret") ;
} catch (InterruptedException exc) {
System.out.println("arret interruption") ;
}
}
} |