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