當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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]

相關用法


注:本文由純淨天空篩選整理自 java.util.Collections.checkedSortedSet() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。