标签:type welcome ring list array 工作原理 保留 并且 strong
[New_Enum_Set = EnumSet.copyOf(Collection collect)
参数:该方法接受枚举对象类型的一个参数collect,并引用其值将被复制到New_Enum_Set的集合。
返回值:该方法不返回任何值。
例外:
// 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]
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]
Java中EnumSet的copyOf()方法: Java.util.EnumSet.copyOf()
标签:type welcome ring list array 工作原理 保留 并且 strong
原文地址:https://www.cnblogs.com/breakyizhan/p/13287207.html