java.util.Collections.emptySet()方法實例
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