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