當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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.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.emptySet() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。