当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Collections checkedNavigableMap()用法及代码示例


Java Collections 的 checkedNavigableMap() 方法是一种返回给定 Map 的动态和类型安全视图的方法。任何插入错误类型元素的尝试都将立即导致 ClassCastException。

用法:

public static <Key,Value> NavigableMap<Key,Value> checkedNavigableMap(NavigableMap<Key,Value> Map, Class<Key> keyType, Class<V> valueType)  

参数:



  1. Key是关键
  2. Value是价值
  3. Map是输入图
  4. keyType是键的数据类型
  5. valueType 是值的数据类型

返回:此方法将返回给定 Map 的动态且类型安全的视图。

异常:

  • ClassCastException:ClassCastException 是当我们不正确地将类从一种类型转换为另一种时在 Java 中引发的运行时异常。

例:

Java


// Java program to create typesafe 
// view from the map
import java.util.*;
  
public class GFG {
    // main method
    public static void main(String[] args)
    {
        // createa tree map
        NavigableMap<String, Integer> data
            = new TreeMap<>();
  
        // Insert values in the given map
        data.put("id1", 56);
        data.put("id2", 15);
        data.put("id3", 19);
        data.put("id4", 70);
  
        // Create type safe view of the given  Map
        System.out.println(Collections.checkedNavigableMap(
            data, String.class, Integer.class));
    }
}
输出
{id1=56, id2=15, id3=19, id4=70}

范例2:

Java


// Java program to create
// typesafe view from the map
import java.util.*;
  
public class GFG {
    // main method
    public static void main(String[] args)
    {
        // createa tree map
        NavigableMap<String, String> data = new TreeMap<>();
  
        // Insert values in the giveb map
        data.put("id1", "sravan");
        data.put("id2", "manoj");
        data.put("id3", "sai");
        data.put("id4", "vignesh");
  
        // Create type safe view of the given  Map
        System.out.println(Collections.checkedNavigableMap(
            data, String.class, String.class));
    }
}
输出
{id1=sravan, id2=manoj, id3=sai, id4=vignesh}



相关用法


注:本文由纯净天空筛选整理自manojkumarreddymallidi大神的英文原创作品 Java Collections checkedNavigableMap() Method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。