-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSynchExample.java
More file actions
124 lines (100 loc) · 2.76 KB
/
SynchExample.java
File metadata and controls
124 lines (100 loc) · 2.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package example.ThreadExample;
/**
* 同步
* - Process synchronization
* - Thread synchronization
* - 相互排斥 mutual exclusive
* - 同步方法 sync method
* - 同步區塊 sync block
* - 靜態同步 static sync
* - 執行緒間的通信 inter-thread communication
*/
public class SynchExample {
public static void main(String[] args) {
// example without sync.
// exampleWithoutSync();
// example with sync.
exampleWithSync();
}
public static void exampleWithoutSync() {
DemoProblemWithoutSync demo = new DemoProblemWithoutSync();
JobThreadFirst jt1 = new JobThreadFirst(demo);
JobThreadSecond jt2 = new JobThreadSecond(demo);
jt1.start();
jt2.start();
}
/**
* 所謂同步,就是可以讓某執行緒在使用記憶體資源時,同時鎖住資源讓其他執行緒無法改動。
*/
public static void exampleWithSync() {
DemoProblemWithoutSync demo = new DemoProblemWithoutSync();
FirstThreadWithSync ftws = new FirstThreadWithSync(demo);
SecondThreadWithSync stws = new SecondThreadWithSync(demo);
ftws.start();
stws.start();
}
}
class DemoProblemWithoutSync {
/**
* 未使用sync方式
* @param n
*/
public void printDemo(int n) {
for (int i=1; i<=5; i++) {
System.out.println("output: " + i*n);
try {
Thread.sleep(500);
} catch (Exception e) {
System.out.println(e);
}
}
}
/**
* 使用sync方式
* @param n
*/
public synchronized void printDemoWithSync(int n) {
for (int i=1; i<=5; i++) {
System.out.println("output: " + i*n);
try {
Thread.sleep(500);
} catch (Exception e) {
System.out.println(e);
}
}
}
}
class JobThreadFirst extends Thread {
DemoProblemWithoutSync demo;
JobThreadFirst(DemoProblemWithoutSync demo) {
this.demo = demo;
}
public void run() {
demo.printDemo(10);
}
}
class JobThreadSecond extends Thread {
DemoProblemWithoutSync demo;
JobThreadSecond(DemoProblemWithoutSync demo) {
this.demo = demo;
}
public void run() {
demo.printDemo(100);
}
}
class FirstThreadWithSync extends JobThreadFirst {
FirstThreadWithSync(DemoProblemWithoutSync demo) {
super(demo);
}
public void run() {
demo.printDemoWithSync(10);
}
}
class SecondThreadWithSync extends JobThreadSecond {
SecondThreadWithSync(DemoProblemWithoutSync demo) {
super(demo);
}
public void run() {
demo.printDemoWithSync(100);
}
}