java.util.Collections.checkedSortedSet() 方法

描述

checkedSortedSet(SortedSet<E>, Class<E>) 方法用于获取指定排序集的动态类型安全视图。


声明

以下是 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]