java.util.Collections.checkedSortedSet()方法實例
checkedSortedSet(SortedSet<E>, Class<E>) 方法用於獲取指定有序set的一個動態類型安全視圖。
聲明
以下是java.util.Collections.checkedSortedSet()方法的聲明。
public static <E> SortedSet<E> checkedSortedSet(SortedSet<E> s, Class<E> type)
參數
-
s--這是有序集合,有關的動態類型安全視圖將被返回。
-
type--這是元素的s被允許保持的類型。
返回值
在方法調用返回指定有序set的一個動態類型安全視圖。
異常
-
NA
例子
下麵的例子顯示java.util.Collections.checkedSortedSet()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create sorted set SortedSet<String> sset = new TreeSet<String>(); // populate the set sset.add("Java"); sset.add("is"); sset.add("best"); // get typesafe view of the sorted set SortedSet<String> tsset; tsset = Collections.checkedSortedSet(sset,String.class); System.out.println("Dynamically typesafe view: "+tsset); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Dynamically typesafe view: [Java, best, is]