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


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


java 集合中的unmodifiableMap() 用于获取给定Map的不可修改视图。

用法:

public static <Key,Value> Map<Key,Value> unmodifiableMap(Map<? extends Key, ? extends Key> map)

参数:

  • Key是键值类型
  • Value是值类型
  • map是输入图

返回:它将返回给定Map的不可修改视图。

异常:此方法不会抛出任何异常。

示例 1:

Java


// Java program to create a map with
// string values and get the
// unmodifiable view
import java.util.*;
  
public class GFG {
    // main method
    public static void main(String[] args)
    {
        // create hashmap
        HashMap<String, String> data
            = new HashMap<String, String>();
  
        // add elements to the created hashmap
        data.put("1", "manoj");
        data.put("2", "sai");
        data.put("3", "ramya");
        data.put("4", "sravan");
  
        // display the data
        System.out.println(data);
  
        // Create unmodifiable map  for the above map
        Map<String, String> final1
            = Collections.unmodifiableMap(data);
  
        // display unmodifiable map
        System.out.println(final1);
    }
}
输出
{1=manoj, 2=sai, 3=ramya, 4=sravan}
{1=manoj, 2=sai, 3=ramya, 4=sravan}

示例 2:

Java


// Java program to create a map 
// with integer values and get
// the unmodifiable view
import java.util.*;
  
public class GFG {
    // main method
    public static void main(String[] args)
    {
        // create hashmap
        HashMap<Integer, Integer> data
            = new HashMap<Integer, Integer>();
  
        // add elements to the created hashmap
        data.put(1, 67);
        data.put(2, 34);
  
        // display the data
        System.out.println(data);
  
        // Create unmodifiable map  for the above map
        Map<Integer, Integer> final1
            = Collections.unmodifiableMap(data);
  
        // display unmodifiable map
        System.out.println(final1);
    }
}
输出
{1=67, 2=34}
{1=67, 2=34}

示例 3:当我们将元素添加到可修改的Map时,它会抛出错误。

Java


import java.util.*;
  
public class GFG {
    // main method
    public static void main(String[] args)
    {
  
        // create hashmap
        HashMap<Integer, Integer> data
            = new HashMap<Integer, Integer>();
  
        // add elements to the created hashmap
        data.put(1, 67);
        data.put(2, 34);
  
        // display the data
        System.out.println(data);
  
        // Create unmodifiable map  for the above map
        Map<Integer, Integer> final1
            = Collections.unmodifiableMap(data);
  
        // put value in unmodifiable map
        final1.put(3, 45);
  
        // display unmodifiable map
        System.out.println(final1);
    }
}

输出:

{1=67, 2=34}
Exception in thread "main" java.lang.UnsupportedOperationException
    at java.util.Collections$UnmodifiableMap.put(Collections.java:1459)
    at GFG.main(GFG.java:21)

相关用法


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