java.util.Collections.checkedCollection()方法實例
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]