En Scala Stack class
, isEmpty() se utiliza para verificar si la pila está vacía o no.
Definición del método: def isEmpty: booleano
Tipo de retorno: Devuelve verdadero si la pila está vacía o de lo contrario devuelve falso.
Ejemplo 1:
// Scala program of isEmpty() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack(1, 3, 2, 7, 6, 5) // Print the stack println(s1) // Applying isEmpty method val result = s1.isEmpty // Display output print("The stack is empty: " + result) } }
Producción:
Stack(1, 3, 2, 7, 6, 5) The stack is empty: false
Ejemplo #2:
// Scala program of isEmpty() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack() // Print the stack println(s1) // Applying isEmpty method val result = s1.isEmpty // Display output print("The stack is empty: " + result) } }
Producción:
Stack() The stack is empty: true
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