En Scala Stack class
, el método pop() se utiliza para eliminar y devolver el elemento en la parte superior de la pila.
Definición del método: def pop(): A
Tipo de devolución: elimina y devuelve el elemento en la parte superior de la pila.
Ejemplo 1:
// Scala program of pop() // method import scala.collection.mutable.Stack // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a stack var s = Stack("C++", "Java", "Python", "Scala") // Print the stack println(s) // Print the top of the stack println("Top of the stack: " + s.top) // Applying pop method val result = s.pop // Print the popped element println("Popped element: " + result) } }
Producción:
Stack(C++, Java, Python, Scala) Top of the stack: C++ Popped element: C++
Ejemplo #2:
// Scala program of pop() // method import scala.collection.mutable.Stack // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a stack var s = Stack(1, 2, 3, 4) // Print the stack println(s) // Print the top of the stack println("Top of the stack: " + s.top) // Applying pop method val result = s.pop // Print the popped element println("Popped element: " + result) } }
Producción:
Stack(1, 2, 3, 4) Top of the stack: 1 Popped element: 1
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