当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。