Java 集合 synchronizedNavigableMap() 方法



描述

Java 集合 synchronizedNavigableMap() 方法用于返回一个由指定的可导航映射支持的同步可导航(线程安全)映射。

声明

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

public static <K,V> NavigableMap<K,V> synchronizedNavigableMap(NavigableMap<K,V> m)

参数

m - 这是要“包装”在同步可导航映射中的可导航映射。

返回值

  • 方法调用返回指定映射的同步可导航视图。

异常

从字符串、整数对的非同步可导航映射获取同步可导航映射示例

以下示例演示了 Java 集合 synchronizedNavigableMap(NavigableMap) 方法的使用。我们创建了一个字符串和整数对的 Map 对象。添加了一些条目,然后使用 synchronizedNavigableMap(NavigableMap) 方法,我们检索了可导航映射的同步可导航版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.NavigableMap;

public class CollectionsDemo {
   public static void main(String[] args) {
      
      // create map
      NavigableMap<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 navigable map
      NavigableMap<String,Integer> synmap = Collections.synchronizedNavigableMap(map);

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

输出

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

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

从字符串、字符串对的非同步可导航映射获取同步可导航映射示例

以下示例演示了 Java 集合 synchronizedNavigableMap(NavigableMap) 方法的使用。我们创建了一个字符串和字符串对的 Map 对象。添加了一些条目,然后使用 synchronizedNavigableMap(NavigableMap) 方法,我们检索了可导航映射的同步可导航版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.NavigableMap;

public class CollectionsDemo {
   public static void main(String[] args) {
      
      // create map
      NavigableMap<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 navigable map
      NavigableMap<String,String> synmap = Collections.synchronizedNavigableMap(map);

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

输出

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

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

从字符串、对象对的非同步可导航映射获取同步可导航映射示例

以下示例演示了 Java 集合 synchronizedNavigableMap(Map) 方法的使用。我们创建了一个字符串和 Student 对的 Map 对象。添加了一些条目,然后使用 synchronizedNavigableMap(Map) 方法,我们检索了映射的同步可导航版本并打印了该映射。

package com.tutorialspoint;

import java.util.Collections;
import java.util.TreeMap;
import java.util.NavigableMap;

public class CollectionsDemo {
   public static void main(String[] args) {
      
      // create map
      NavigableMap<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 navigable map
      NavigableMap<String,Student> synmap = Collections.synchronizedNavigableMap(map);

      System.out.println("Synchronized Navigable 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 Navigable map is :{1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ]}
java_util_collections.htm
广告