El método Java.util.EnumSet.clone() en Java se usa para devolver una copia superficial del conjunto existente o este.
Sintaxis:
Enum_Set_2 = Enum_Set_1.clone()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método Java.util.EnumSet.clone():
Programa 1:
// Java program to demonstrate clone() 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 empty EnumSet System.out.println("Initial set: " + e_set); // Cloning the set EnumSet<GFG> final_set = e_set.clone(); // Displaying the final set System.out.println("The updated set is:" + final_set); } }
Producción:
Initial set: [Welcome, To, The, World, of, Geeks] The updated set is:[Welcome, To, The, World, of, Geeks]
Programa 2:
// Java program to demonstrate clone() 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 = e_set.clone(); // Displaying the final set System.out.println("The updated set is:" + final_set); } }
Producción:
Initial set: [RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW] The updated set is:[RANGE_ROVER, MUSTANG, CAMARO, AUDI, BMW]
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA