描述
這個checkedMap(Map<, V>, Class<K>, Class<V>)方法用於獲取指定映射的動態類型安全視圖。
聲明
以下是聲明java.util.Collections.checkedMap()方法。
public static <K,V> Map<K,V> checkedMap(Map<K,V> m,Class<K> keyType,Class<V> valueType)
參數
m- 這是將為其返回動態類型安全視圖的映射。
keyType- 這是允許 m 持有的 key 類型。
valueType- 這是允許 m 持有的值的類型。
返回值
方法調用返回指定映射的動態類型安全視圖。
異常
NA
示例
下麵的例子展示了 java.util.Collections.checkedMap() 的用法
package com.tutorialspoint;
import java.util.*;
public class CollectionsDemo {
public static void main(String args[]) {
// create map
HashMap<String,String> hmap = new HashMap<String,String>();
// populate the map
hmap.put("1", "Always");
hmap.put("2", "follow");
hmap.put("3", "tutorials");
hmap.put("4", "point");
// get typesafe view of the map
Map<String,String> tsmap;
tsmap = Collections.checkedMap(hmap,String.class,String.class);
System.out.println("Dynamically typesafe view of the map:"+tsmap);
}
}
讓我們編譯並運行上麵的程序,這將產生以下結果。
Dynamically typesafe view of the map:{3=tutorials, 2=follow, 1=Always, 4=point}
相關用法
- Java java.util.Collections.checkedList()用法及代碼示例
- Java java.util.Collections.checkedSortedSet()用法及代碼示例
- Java java.util.Collections.checkedCollection()用法及代碼示例
- Java java.util.Collections.checkedSortedMap()用法及代碼示例
- Java java.util.Collections.checkedSet()用法及代碼示例
- Java java.util.Collections.copy()用法及代碼示例
- Java java.util.Collections.ncopies()用法及代碼示例
- Java java.util.Collections.min()用法及代碼示例
- Java java.util.Collections.frequency()用法及代碼示例
- Java java.util.Collections.replaceAll()用法及代碼示例
- Java java.util.Collections.shuffle()用法及代碼示例
- Java java.util.Collections.asLifoQueue()用法及代碼示例
- Java java.util.Collections.synchronizedSortedSet()用法及代碼示例
- Java java.util.Collections.max()用法及代碼示例
- Java java.util.Collections.unmodifiableSet()用法及代碼示例
- Java java.util.Collections.binarySearch()用法及代碼示例
- Java java.util.Collections.synchronizedCollection()用法及代碼示例
- Java java.util.Collections.unmodifiableMap()用法及代碼示例
- Java java.util.Collections.singletonMap()用法及代碼示例
- Java java.util.Collections.unmodifiableCollection()用法及代碼示例
注:本文由純淨天空篩選整理自 java.util.Collections.checkedMap() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。