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


Java EnumSet complementOf()用法及代码示例


java.util.EnumSet.complementOf(Enum_Set)方法用于创建一个EnumSet,其中包含与指定的Enum_Set类型相同的元素,其值包含在枚举中,但不同于指定的Enum_Set。

用法:

New_Enum_Set = EnumSet.complementOf(Enum_Set)

参数:该方法接受一个参数Enum_Set,在将值填充到新的补充枚举集中时,将忽略其值。


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

异常:如果值Enum_Set为NULL,则该方法引发NullPointerException。

以下程序说明了java.util.EnumSet.complementOf()方法的用法:
示例1:

// Java program to demonstrate complementOf() 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 elements from GFG 
        EnumSet<GFG> e_set = EnumSet.of(GFG.To, GFG.Welcome, 
                                        GFG.Geeks); 
  
        // Displaying the empty EnumSet 
        System.out.println("Initial set: " + e_set); 
  
        // Cloning the set 
        EnumSet<GFG> final_set = EnumSet.complementOf(e_set); 
  
        // Displaying the final set 
        System.out.println("The updated set is:" + final_set); 
    } 
}
输出:
Initial set: [Welcome, To, Geeks]
The updated set is:[The, World, of]

示例2:

// Java program to demonstrate complementOf() 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 empty EnumSet 
        System.out.println("Initial set: " + e_set); 
  
        // Cloning the set 
        EnumSet<CARS> final_set = EnumSet.complementOf(e_set); 
  
        // Displaying the final set 
        System.out.println("The updated set is:" + final_set); 
    } 
}
输出:
Initial set: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
The updated set is:[]


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 EnumSet complementOf() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。