checkedCollection(Collection<E>, Class<E>) 方法用於獲取指定集合的一個動態型別安全檢視。
以下是java.util.Collections.checkedCollection()方法的宣告。
public static <E> Collection<E> checkedCollection(Collection<E> c,Class<E> type)
c--這對於一個動態型別安全檢視是要返回的集合。
type--型別元素c允許保持。
在方法呼叫返回指定集合的一個動態型別安全檢視。
NA
下面的例子顯示java.util.Collections.checkedCollection()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create arraylist ArrayList<String> arlst = new ArrayList<String>(); // populate the list arlst.add("TP"); arlst.add("PROVIDES"); arlst.add("QUALITY"); arlst.add("TUTORIALS"); // create typesafe view of the collection Collection<String> tslst; tslst = Collections.checkedCollection(arlst,String.class); System.out.println("Type safe view is: "+tslst); } }
Let us compile and run the above program, this will produce the following result.
Type safe view is: [TP, PROVIDES, QUALITY, TUTORIALS]