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


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]