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)
相关用法
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
- Java Java.util.Collections.frequency()用法及代码示例
- Java Collections.reverse()用法及代码示例
- Java Collections.shuffle()用法及代码示例
- Java Collections singletonMap()用法及代码示例
- Java Collections min()用法及代码示例
- Java Collections max()用法及代码示例
- Java Collections addAll()用法及代码示例
- Java Collections asLifoQueue()用法及代码示例
- Java Collections unmodifiableCollection()用法及代码示例
- Java Collections unmodifiableSortedMap()用法及代码示例
- Java Collections unmodifiableSet()用法及代码示例
- Java Collections unmodifiableMap()用法及代码示例
- Java Collections unmodifiableList()用法及代码示例
- Java Collections checkedCollection()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections checkedSortedMap()用法及代码示例
- Java Collections checkedSortedSet()用法及代码示例
- Java Collections enumeration()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections fill()用法及代码示例
- Java Collections indexOfSubList()用法及代码示例
注:本文由纯净天空筛选整理自manojkumarreddymallidi大神的英文原创作品 Java Collections unmodifiableNavigableMap() Method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。