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


Java Collections emptySet()用法及代碼示例


Collections類emptySet()方法

  • emptySet() 方法可在java.util包。
  • emptySet() 方法用於返回不可變的空集。
  • emptySet() 方法是一個靜態方法,因此可以通過 classname 訪問它,如果我們嘗試使用 class 對象訪問該方法,那麽我們將不會收到錯誤消息。
  • emptySet() 方法在返回不可變對象時不拋出異常。

用法:

    public static final Set emptySet();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是Set,它返回一個空的不可變集合對象。

例:

// Java program is to demonstrate the example
// of Set emptySet() of Collections

import java.util.*;

public class EmptySet {
    public static void main(String args[]) {
        // By using emptySet() method is 
        // to get a empty set
        Set set = Collections.emptySet();

        // Display Empty set
        System.out.println("set:" + set);
    }
}

輸出

set:[]


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Collections emptySet() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。