java.util.Collections.checkedSortedSet() java.util.Collections.checkedSortedMap() java.util.Collections.copy() 描述 所述checkedSortedSet(SortedSet, Class)方法被用来获得指定有序集合的动态类型安全视图。 声明 以下是java.util.Collections.checkedSortedSet()方法的声明。 public static <E> SortedSet<E> checkedSortedSet(SortedSet<E> s, Class<E> type) 参数 s - 这是要为其返回动态类型安全视图的有序集。 type - 这是允许s保持的元素类型。 返回值 方法调用返回指定有序集的动态类型安全视图。 异常 NA 实例 以下示例显示了java.util.Collections.checkedSortedSet()的用法 package com.tutorialspoint; 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] java.util.Collections.checkedSortedMap() java.util.Collections.copy()