Name: ###@###.### Date: 09/03/96
Java language specification [20.20.39 public static void sleep(long millis)
throws InterruptedException] says:
"If the current thread is interrupted (20.20.31) by another thread
while it is waiting, then the sleep is ended and an
InterruptedException is thrown."
The following example shows that InterruptedException is not thrown.
The statement
out.println ("InterruptedException 1");
in catch block is not executed:
> javac -d . excp02509.java
> java javasoft.sqe.tests.lang.excp025.excp02509.excp02509
1-1 before sleep is interrupted false
2-1 is interrupted false
2-1 is alive true
2-2 is interrupted true
2-2 is alive true
1-2 after sleep is interrupted true
>
--------------------------------excp02509.java--------------------------------
//File: @(#)excp02509.java 1.1 96/08/20
//Copyright 08/20/96 Sun Microsystems, Inc. All Rights Reserved
package javasoft.sqe.tests.lang.excp025.excp02509;
import java.io.PrintStream;
public class excp02509 {
public static void main(String argv[]) {
System.exit(run(argv,System.out));
}
public static int run(String argv[],PrintStream out) {
Thread a1 = Thread.currentThread ();
Thread a2 = new excp02509T (a1);
int result = 2;
a2.start ();
try {
out.println ("1-1 before sleep is interrupted " + Thread.interrupted());
Thread.sleep (1000);
out.println ("1-2 after sleep is interrupted " + Thread.interrupted());
}
catch (InterruptedException e) {
out.println ("InterruptedException 1");
result = 0;
}
return result;
}
}
class excp02509T extends Thread
{
Thread tr;
excp02509T (Thread ctr) {
tr = ctr;
}
public void run ()
{
System.out.println(" 2-1 is interrupted " + tr.isInterrupted());
System.out.println(" 2-1 is alive " + tr.isAlive());
tr.interrupt ();
System.out.println(" 2-2 is interrupted " + tr.isInterrupted());
System.out.println(" 2-2 is alive " + tr.isAlive());
}
}
----------------------------------------------------------------
======================================================================