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