-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsynchronizedTreeMap.java
39 lines (34 loc) · 1.24 KB
/
synchronizedTreeMap.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
import java.util.Collections;
import java.util.TreeMap;
import java.util.SortedMap;
public class synchronizedTreeMap {
public static void main(String[] args) throws Exception {
Thread th = new Thread();
// synchronizedTreeMap
TreeMap<String, Integer> map = new TreeMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);
System.out.println("Map:" + map);
SortedMap<String,Integer> sortedMap = Collections.synchronizedSortedMap(map);
System.out.println("Synchronized Map:" + sortedMap);
th.start();
Thread.sleep(1000);
TreeMap<String, Integer> map1 = new TreeMap<>();
TreeMap<String, Integer> map2 = new TreeMap<>();
//synchronized () -- method
synchronized (map1) {
map1.put("a", 1);
map1.put("b", 2);
map1.put("c", 3);
System.out.println("Map1:" + map1);
}
synchronized (map2) {
map2.put("a", 1);
map2.put("b", 2);
map2.put("c", 3);
System.out.println("Map2:" + map2);
}
th.stop();
}
}