java.util.Collections.synchronizedSortedMap() java.util.Collections.synchronizedSet() java.util.Collections.synchronizedSortedSet() 描述 所述synchronizedSortedMap()方法用来返回的同步(thread-safe)排序映射由指定有序映射支持。 声明 以下是java.util.Collections.synchronizedSortedMap()方法的声明。 public static <K,V> SortedMap<K,V> synchronizedSortedMap(SortedMap<K,V> m) 参数 m - 这是在同步有序映射中“包装”的有序映射。 返回值 方法调用返回指定有序映射的同步视图。 异常 NA 实例 以下示例显示了java.util.Collections.synchronizedSortedMap()的用法 package com.tutorialspoint; import java.util.*; public class CollectionsDemo { public static void main(String[] args) { // create map SortedMap<String,String> map = new TreeMap<String, String> (); // populate the map map.put("1","TP"); map.put("2","IS"); map.put("3","BEST"); // create a sorted map SortedMap sortedmap = (SortedMap)Collections.synchronizedSortedMap(map); System.out.println("Synchronized sorted map is :"+sortedmap); } } 让我们编译并运行上面的程序,这将产生以下结果。 Synchronized sorted map is :{1=TP, 2=IS, 3=BEST} java.util.Collections.synchronizedSet() java.util.Collections.synchronizedSortedSet()