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被允許保持的。
valueType-- 型別的值m被允許保持。
該方法呼叫返回指定對映的一個動態型別安全檢視。
NA
下面的例子顯示java.util.Collections.checkedMap()方法的使用
package com.yiibai; 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}