复制代码
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59public class TestThread { public static void main(String args[]) { RunnableEat R1 = new RunnableEat( "eat"); Thread eat = new Thread(R1); eat.start(); RunnableSleep R2 = new RunnableSleep( "sleep"); Thread sleep = new Thread(R2); sleep.start(); } } class RunnableEat implements Runnable { private String threadName; RunnableEat( String name) { threadName = name; System.out.println("创建线程eat:" + threadName ); } @Override public void run() { System.out.println("执行线程eat " + threadName ); try { for(int i = 4; i > 0; i--) { System.out.println("ThreadEat: " + threadName + ", " + i); // 让线程睡眠一会 Thread.sleep(50); } }catch (InterruptedException e) { System.out.println("Thread " + threadName + " interrupted."); } System.out.println("Thread " + threadName + " exiting.存在,但不执行?"); } } class RunnableSleep implements Runnable { private String threadName; RunnableSleep( String name) { threadName = name; System.out.println("创建线程sleep" + threadName ); } @Override public void run() { System.out.println("执行线程sleep " + threadName ); try { for(int i = 4; i > 0; i--) { System.out.println("线程sleep睡眠: " + threadName + ", " + i); // 让线程睡眠一会 Thread.sleep(50); } }catch (InterruptedException e) { System.out.println("Thread " + threadName + " interrupted.终止"); } System.out.println("Thread " + threadName + " exiting.存在,但不执行"); } }
最后
以上就是霸气棒棒糖最近收集整理的关于多线程代码小案例的全部内容,更多相关多线程代码小案例内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复