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


Java java.util.Collections.unmodifiableSortedSet()用法及代碼示例



描述

這個unmodifiableSortedSet()方法用於獲取指定排序集的不可修改視圖。

聲明

以下是聲明java.util.Collections.unmodifiableSortedSet()方法。

public static <T> SortedSet <T> unmodifiableSortedSet(SortedSet <T> s)

參數

s─ 這是將返回不可修改視圖的排序集。

返回值

方法調用返回指定排序集的不可修改視圖。

異常

NA

示例

下麵的例子展示了 java.util.Collections.unmodifiableSortedSet() 的用法

package com.tutorialspoint;

import java.util.*;

public class CollectionsDemo {
   public static void main(String[] s) {
   
      // create sorted set
      SortedSet<String> set = new TreeSet<String>();

      // populate the set
      set.add("Welcome");
      set.add("to");
      set.add("TP");

      System.out.println("Initial set value:"+set);

      // create unmodifiable sorted set
      Set unmodsortset = Collections.unmodifiableSortedSet(set);

      // try to modify the sorted set
      unmodsortset.add("Hello");
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

Initial set value:[TP, Welcome, to]
Exception in thread "main" java.lang.UnsupportedOperationException

相關用法


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