En Scala Stack class
, el método clone() se usa para crear una copia de la pila dada.
Definición del método: def clone(): Stack[A]
Tipo de devolución: devuelve una nueva pila que es una copia de la pila dada.
Ejemplo 1:
// Scala program of clone() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack(1, 2, 3, 4, 5) // Print the stack println(s1) // Applying clone method val result = s1.clone // Displays output print("Clone of the stack: " + result) } }
Producción:
Stack(1, 2, 3, 4, 5) Clone of the stack: Stack(1, 2, 3, 4, 5)
Ejemplo #2:
// Scala program of clone() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack(3, 4, 5, 6, 7, 8) // Print the stack println(s1) // Applying clone method val result = s1.clone // Displays output print("Clone of the stack: " + result) } }
Producción:
Stack(3, 4, 5, 6, 7, 8) Clone of the stack: Stack(3, 4, 5, 6, 7, 8)
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