forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadSafeDoubleCheckLocking.java
More file actions
40 lines (36 loc) · 1019 Bytes
/
ThreadSafeDoubleCheckLocking.java
File metadata and controls
40 lines (36 loc) · 1019 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
39
40
package com.iluwatar;
/**
* Double check locking
*
* http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html
*
* Broken under Java 1.4.
* @author mortezaadi@gmail.com
*
*/
public class ThreadSafeDoubleCheckLocking {
private static volatile ThreadSafeDoubleCheckLocking INSTANCE;
/**
* private constructor to prevent client from instantiating.
*
*/
private ThreadSafeDoubleCheckLocking() {
//to prevent instantiating by Reflection call
if(INSTANCE != null)
throw new IllegalStateException("Already initialized.");
}
public static ThreadSafeDoubleCheckLocking getInstance() {
//local variable increases performance by 25 percent
//Joshua Bloch "Effective Java, Second Edition", p. 283-284
ThreadSafeDoubleCheckLocking result = INSTANCE;
if (result == null) {
synchronized (ThreadSafeDoubleCheckLocking.class) {
result = INSTANCE;
if (result == null) {
INSTANCE = result = new ThreadSafeDoubleCheckLocking();
}
}
}
return result;
}
}