java.util.Collections.emptySet() java.util.Collections.emptyMap() java.util.Collections.enumeration() 描述 该emptySet()方法来获得空set(immutable)。这个集是可序列化的。 声明 以下是java.util.Collections.emptySet()方法的声明。 public static final <T> Set<T> emptySet() 参数 NA 返回值 NA 异常 NA 实例 以下示例显示了java.util.Collections.emptySet()的用法 package com.tutorialspoint; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create an empty set Set emptyset = Collections.emptySet(); System.out.println("Created empty immutable set: "+emptyset); // try to add elements emptyset.add("Adding"); } } 让我们编译并运行上面的程序,这将产生以下结果。集合是不可变的,因此添加元素将抛出异常。 Created empty immutable set: [] Exception in thread "main" java.lang.UnsupportedOperationException java.util.Collections.emptyMap() java.util.Collections.enumeration()