java.util.Collections.checkedList()方法範例


checkedList(List<E>, Class<E>)方法用於獲取指定列表的一個動態型別安全檢視。

宣告

以下是java.util.Collections.checkedList()方法的宣告。

public static <E> List<E> checkedList(List<E> list,Class<E> type)

引數

  • list--這對於一個動態型別安全檢視是要返回的列表中。

  • type--這是元素的列表被允許保持的型別。

返回值

在方法呼叫返回指定列表的一個動態型別安全檢視。

異常

  • NA

例子

下面的例子顯示java.util.Collections.checkedList()方法的使用

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 list
      Collection<String> tslst;
      tslst = Collections.checkedList(arlst,String.class);     
      
      System.out.println("Dynamically typesafe view is: "+tslst);
   }    
}

讓我們來編譯和執行上面的程式,這將產生以下結果。

Dynamically typesafe view is: [TP, PROVIDES, QUALITY, TUTORIALS]