checkedSet(Set<E>, Class<E>) 方法用於獲取指定集合的動態型別安全檢視。
以下是java.util.Collections.checkedSet()方法的宣告。
public static <E> Set<E> checkedSet(Set<E> s, Class<E> type)
s--這對於一個動態型別安全檢視是要返回的集合。
type --這是元素s被允許保持的型別。
在方法呼叫返回指定set的一個動態型別安全檢視。
NA
下面的例子顯示java.util.Collections.checkedSet()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create set TreeSet<String> hset = new TreeSet<String>(); // populate the set hset.add("Collections"); hset.add("in"); hset.add("java"); // get typesafe view of the set Set<String> tsset = Collections.checkedSet(hset,String.class); System.out.println("Dynamically typesafe view of the set: "+tsset); } }
讓我們來編譯和執行上面的程式,這將產生以下結果。
Dynamically typesafe view of the set: [Collections, in, java]