位置:首頁 > Java技術 > Java.util包 > java.util.Collections.checkedSet()方法實例

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]