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]