📜  Java中的 EnumSetlementOf() 方法

📅  最后修改于: 2022-05-13 01:55:13.507000             🧑  作者: Mango

Java中的 EnumSetlementOf() 方法

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() 方法的工作:
方案一:

// 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 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 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]

方案二:

// 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 e_set = EnumSet.allOf(CARS.class);
  
        // Displaying the empty EnumSet
        System.out.println("Initial set: " + e_set);
  
        // Cloning the set
        EnumSet 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:[]