forked from liujiboy/Java_Course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterruptTest2.java
More file actions
34 lines (34 loc) · 937 Bytes
/
InterruptTest2.java
File metadata and controls
34 lines (34 loc) · 937 Bytes
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
package code0904;
public class InterruptTest2 extends Thread {
static int result = 0;
public InterruptTest2(String name) {
super(name);
}
public static void main(String[] args) {
System.out.println("主线程执行");
Thread t = new InterruptTest2("计算线程");
t.start();
System.out.println("result:" + result);
try {
long start = System.nanoTime();
t.join(10);
long end = System.nanoTime();
t.interrupt();
System.out.println((end - start) / 1000000 + "毫秒后:" + result);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void run() {
System.out.println(this.getName() + "开始计算...");
for (int i = 0; i < 1000000; i++) {
result++;
if (Thread.interrupted()) {
System.out.println(this.getName() + "被中断,即将结束");
return;
}
}
System.out.println(this.getName() + "结束计算");
}
}