En Scala Stack class
, el método takeRight() se utiliza para devolver una pila que consta de los últimos ‘n’ elementos de la pila.
Definición del método: def takeRight(n: Int):Stack[A]
Tipo de devolución: devuelve una pila que consta de los últimos ‘n’ elementos de la pila.
Ejemplo 1:
// Scala program of takeRight() // 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) // Print the stack println(s1) // Applying takeRight method val result = s1.takeRight(2) // Display output print("Stack containing last two elements: " + result) } }
Producción:
Stack(1, 2, 3, 4) Stack containing last two elements: Stack(3, 4)
Ejemplo #2:
// Scala program of takeRight() // 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) // Print the stack println(s1) // Applying takeRight method val result = s1.takeRight(3) // Display output print("Stack containing last three elements: " + result) } }
Producción:
Stack(1, 2, 3, 4) Stack containing last three elements: Stack(2, 3, 4)
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