emptySet() 方法用於獲取空集(不可變)。這集是可序列化的。
以下是java.util.Collections.emptySet()方法的宣告。
public static final <T> Set<T> emptySet()
NA
NA
NA
下面的例子顯示java.util.Collections.emptySet()方法的使用
package com.yiibai; 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