blob: 7220a6a3a6a364475cbd160cf4c0c9897882ba5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Test that Thread.sleep() works.
public class Thread_Sleep
{
public static void main(String args[])
{
try
{
long start = System.currentTimeMillis();
System.out.println("sleeping");
Thread.sleep(50);
long end = System.currentTimeMillis();
if ((end - start) < 50)
System.out.println ("failed");
else
System.out.println("ok");
}
catch (InterruptedException x)
{
System.out.println("error: Thread interrupted.");
}
}
}
|