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


Java EnumSet noneOf()用法及代碼示例


Java中的java.util.EnumSet.noneOf(Class elementType)方法用於創建類型為elementType的空集。

用法:

public static <E extends Enum<E>> EnumSet<E> noneOf(Class<E> elementType)

參數:該方法接受元素類型的一個參數elementType,並為此枚舉集引用元素類型的類對象。


返回值:該方法不返回任何值。

異常:如果elementType為Null,則該方法引發NullPointerException。

以下程序說明了Java.util.EnumSet.noneOf()方法的用法:
示例1:

// Java program to demonstrate noneof() method 
import java.util.*; 
  
// Creating an enum of GFG type 
enum GFG { 
    Welcome, 
    To, 
    The, 
    World, 
    of, 
    Geeks 
} 
; 
  
public class Enum_Set_Demo { 
  
    public static void main(String[] args) 
    { 
  
        // Creating an empty EnumSet 
        // Getting all elements from GFG 
        EnumSet<GFG> e_set = EnumSet.allOf(GFG.class); 
  
        // Displaying the initial EnumSet 
        System.out.println("The first set is: " + e_set); 
  
        // Creating another empty set 
        EnumSet<GFG> other_set = EnumSet.noneOf(GFG.class); 
  
        // Displaying the new set 
        System.out.println("The other set is: " + other_set); 
    } 
}
輸出:
The first set is: [Welcome, To, The, World, of, Geeks]
The other set is: []

示例2:

// Java program to demonstrate copyOf() method 
import java.util.*; 
  
// Creating an enum of CARS type 
enum CARS { 
    RANGE_ROVER, 
    MUSTANG, 
    CAMARO, 
    AUDI, 
    BMW 
} 
; 
  
public class Enum_Set_Demo { 
  
    public static void main(String[] args) 
    { 
  
        // Creating an empty EnumSet 
        // Getting all elements from CARS 
        EnumSet<CARS> e_set = EnumSet.allOf(CARS.class); 
  
        // Displaying the initial EnumSet 
        System.out.println("The first set is: " + e_set); 
  
        // Creating another empty set 
        EnumSet<CARS> other_set = EnumSet.noneOf(CARS.class); 
  
        // Displaying the new set 
        System.out.println("The other set is: " + other_set); 
    } 
}
輸出:
The first set is: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
The other set is: []


相關用法


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