-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopTest.java
More file actions
38 lines (32 loc) · 785 Bytes
/
Copy pathStopTest.java
File metadata and controls
38 lines (32 loc) · 785 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
35
36
37
38
/**
* @author xjn
* @since 2020-03-08
*/
public class StopTest {
public static boolean flag = true;
public static void main(String[] args) throws InterruptedException {
for (int i = 0; i < 20; i++) {
MyThread3 t = new MyThread3(true);
t.start();
}
Thread.sleep(1000);
flag = false;
// t.stop();
}
}
class MyThread3 extends Thread {
public MyThread3(boolean flag) {
}
@Override
public void run() {
while (StopTest.flag) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("hello");
}
}
}