java.util.Collections.unmodifiableSet()


描述

所述unmodifiableSet()方法返回指定集合的修改视图。

声明

以下是java.util.Collections.unmodifiableSet()方法的声明。

public static <T> boolean addAll(Collection<? super T> c, T.. a)

参数

s - 这是要返回不可修改视图的集合。

返回值

方法调用返回指定集的不可修改视图。

异常

NA

实例

以下示例显示了java.util.Collections.unmodifiableSet()的用法

package com.tutorialspoint;

import java.util.*;

public class CollectionsDemo {
   public static void main(String[] s) {

      // create set
      Set<String> set = new HashSet<String>();

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

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

      // create unmodifiable set
      Set unmodset = Collections.unmodifiableSet(set);

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

让我们编译并运行上面的程序,这将产生以下结果。

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