-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadExampleSynchronized.java
79 lines (65 loc) · 1.52 KB
/
ThreadExampleSynchronized.java
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
package concept.examples.threads;
class SpreadSheet {
int cell1, cell2, cell3;
int setandGetSum(int a1, int a2, int a3) {
cell1 = a1;
sleepForSomeTime();
cell2 = a2;
sleepForSomeTime();
cell3 = a3;
sleepForSomeTime();
return cell1 + cell2 + cell3;
}
void sleepForSomeTime() {
try {
Thread.sleep(10 * (int) (Math.random() * 100));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
class SynchronizedSyntaxExample {
static int count;
int instanceValue;
// others..
synchronized void synchronizedExample1() {
// All code goes here..
}
void synchronizedExample2() {
synchronized (this) {
// All code goes here..
}
}
synchronized static int getCount() {
return count;
}
static int getCount2() {
synchronized (SynchronizedSyntaxExample.class) {
return count;
}
}
}
public class ThreadExampleSynchronized implements Runnable {
SpreadSheet spreadSheet = new SpreadSheet();
@Override
public void run() {
for (int i = 0; i < 4; i++) {
System.out.print(spreadSheet.setandGetSum(i, i * 2, i * 3) + " ");
}
}
public static void main(String[] args) {
ThreadExampleSynchronized r = new ThreadExampleSynchronized();
Thread one = new Thread(r);
Thread two = new Thread(r);
one.start();
two.start();
// First UnSynchronized Run
// 0 3 6 9 12 15 18 18
// Second UnSynchronized Run
// 0 1 6 7 12 18 18 18
// Synchronized Run
// 0 0 6 6 12 12 18 18
// A static synchronized method and a non-static synchronized method
// will not block each other,
}
}