Java集合synchronizedSortedMap()方法



描述

Java Collections synchronizedSortedMap() 方法用于返回一个由指定排序映射支持的同步排序(线程安全)映射。

声明

以下是java.util.Collections.synchronizedSortedMap() 方法的声明。

public static <K,V> SortedMap<K,V> synchronizedSortedMap(SortedMap<K,V> m)

参数

m − 这是要“包装”到同步排序映射中的排序映射。

返回值

  • 方法调用返回指定排序映射的同步排序视图。

异常

从String, Integer类型的非同步排序映射获取同步排序映射示例

以下示例演示了Java Collection synchronizedSortedMap(SortedMap) 方法的使用。我们创建了一个String和Integer类型的SortedMap对象。添加了一些条目,然后使用synchronizedSortedMap(SortedMap) 方法,我们检索到了排序映射的同步排序版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.SortedMap;

public class CollectionsDemo {
   public static void main(String[] args) {
      
      // create map
      SortedMap<String,Integer> map = new TreeMap<String,Integer>();

      // populate the map
      map.put("1",1); 
      map.put("2",2);
      map.put("3",3);

      // create a synchronized sorted map
      SortedMap<String,Integer> synmap = Collections.synchronizedSortedMap(map);

      System.out.println("Synchronized Sorted map is :"+synmap);
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果。

Synchronized Sorted map is :{1=1, 2=2, 3=3}

从String, String类型的非同步排序映射获取同步排序映射示例

以下示例演示了Java Collection synchronizedSortedMap(SortedMap) 方法的使用。我们创建了一个String和String类型的SortedMap对象。添加了一些条目,然后使用synchronizedSortedMap(SortedMap) 方法,我们检索到了排序映射的同步排序版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.SortedMap;

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 synchronized sorted map
      SortedMap<String,String> synmap = Collections.synchronizedSortedMap(map);

      System.out.println("Synchronized Sorted map is :"+synmap);
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果。

Synchronized Sorted map is :{1=TP, 2=IS, 3=BEST}

从String, Object类型的非同步排序映射获取同步排序映射示例

以下示例演示了Java Collection synchronizedSortedMap(SortedMap) 方法的使用。我们创建了一个String和Student对象类型的SortedMap对象。添加了一些条目,然后使用synchronizedSortedMap(SortedMap) 方法,我们检索到了排序映射的同步排序版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.SortedMap;

public class CollectionsDemo {
   public static void main(String[] args) {
      
      // create map
      SortedMap<String,Student> map = new TreeMap<String,Student>();

      // populate the map
      map.put("1",new Student(1, "Julie")); 
      map.put("2",new Student(2, "Robert"));
      map.put("3",new Student(3, "Adam"));

      // create a synchronized sorted map
      SortedMap<String,Student> synmap = Collections.synchronizedSortedMap(map);

      System.out.println("Synchronized Sorted map is :"+synmap);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果。

Synchronized Sorted map is :{1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ]}
java_util_collections.htm
广告