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


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

  1. java.util.EnumSet.copyOf(收集收集)Java中的method用於將集合中的所有內容複製到新的枚舉集中。首先,使用枚舉的元素構成集合,然後創建一個新的枚舉集,即集合的副本。

    用法:

    New_Enum_Set = EnumSet.copyOf(Collection collect)

    參數:該方法接受枚舉的對象類型的一個參數collection,表示其值將被複製到New_Enum_Set中的collection。

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


    異常:

    • IllegalArgumentException注意:如果collect不是EnumSet實例,並且包含無法與枚舉進行比較的元素,或者不包含任何元素,則拋出此異常。
    • NullPointerException 注意:如果collect為NULL,則拋出此異常。

    以下示例程序旨在說明java.util.EnumSet.copyOf()方法的用法:

    // Java program to demonstrate copyOf() 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 collection 
            Collection<GFG> collect = new ArrayList<GFG>(); 
      
            // Adding elements to the Collection 
            collect.add(GFG.Welcome); 
            collect.add(GFG.World); 
            collect.add(GFG.Geeks); 
      
            // Displaying the collection 
            System.out.println("The collection is: " + collect); 
      
            EnumSet<GFG> e_set = EnumSet.copyOf(collect); 
      
            // Displaying the final set 
            System.out.println("The enum set is:" + e_set); 
        } 
    }
    輸出:
    The collection is: [Welcome, World, Geeks]
    The enum set is:[Welcome, World, Geeks]
    
  2. Java中的java.util.EnumSet.copyOf(EnumSet e_set)方法用於將所有內容從現有的EnumSet(即e_set)複製到新的枚舉集。

    用法:

    New_Enum_Set = EnumSet.copyOf(EnumSet e_set)

    參數:該方法接受枚舉的對象類型的一個參數e_set,表示其值將被複製到New_Enum_Set中的集合。

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

    異常:當e_set為NULL時,該方法引發NullPointerException。

    以下示例程序旨在說明java.util.EnumSet.copyOf()方法的用法:

    // 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("Initial set is: " + e_set); 
      
            // Copying the set 
            EnumSet<CARS> new_set = EnumSet.copyOf(e_set); 
      
            // Displaying the final set 
            System.out.println("The new set is: " + new_set); 
        } 
    }
    輸出:
    Initial set is: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
    The new set is: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
    


相關用法


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