En Scala TreeSet class
, el método clone() se usa para crear una copia del TreeSet dado.
Definición del método: def clone(): Cola[A]
Tipo de devolución: devuelve un nuevo TreeSet que es una copia del TreeSet dado.
Ejemplo 1:
// Scala program of clone() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 1, 3, 4, 5) // Print the TreeSet println(t1) // Applying clone() method val result = t1.clone // Displays output println("Clone of the TreeSet: " + result) } }
Producción:
TreeSet(1, 2, 3, 4, 5) Clone of the TreeSet: TreeSet(1, 2, 3, 4, 5)
Ejemplo #2:
// Scala program of clone() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet("a", "e", "i", "o", "u") // Print the TreeSet println(t1) // Applying clone() method val result = t1.clone // Displays output println("Clone of the TreeSet: " + result) } }
Producción:
TreeSet(a, e, i, o, u) Clone of the TreeSet: TreeSet(a, e, i, o, u)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA