En Scala Stack class
, el método size() se utiliza para devolver el número de elementos presentes en la pila.
Definición del método: tamaño def: Int
Tipo de retorno: Devuelve el número de elementos presentes en la pila.
Ejemplo 1:
// Scala program of size() // 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 size method val result = s1.size // Display output print("Size of the stack: " + result) } }
Producción:
Stack(1, 2, 3, 4) Size of the stack: 4
Ejemplo #2:
// Scala program of size() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack("a", "e", "i", "o", "u") // Print the stack println(s1) // Applying size method val result = s1.size // Display output print("Size of the stack: " + result) } }
Producción:
Stack(a, e, i, o, u) Size of the stack: 5
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