-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultThread.java
More file actions
38 lines (35 loc) · 1.03 KB
/
Copy pathmultThread.java
File metadata and controls
38 lines (35 loc) · 1.03 KB
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
/*************************************************************************
# File Name: multThread.java
# Author:
# Mail:
# Created Time: 2016年11月19日 星期六 13时43分12秒
************************************************************************/
class NewThread implements Runnable{
String name;
Thread t;
NewThread(String threadName){
name = threadName;
t = new Thread(this,name);
System.out.println("New Thread:"+t);
t.start();
}
public void run(){
try{
for(int i = 5;i > 0;i--){
System.out.println(name+":"+i);
Thread.sleep(1000);
}
}catch(InterruptedException e){
System.out.println(name+" Interrupted!");
}
System.out.println(name+" Exiting!");
}
}
public class multThread{
public static void main(String args[]){
new NewThread("one");
new NewThread("tow");
new NewThread("Three");
System.out.println("Exiting Main THread");
}
}