Método Scala Stack toString() con ejemplo

En Scala Stack class, el método toString() se utiliza para devolver una representación de string del objeto de pila.

Definición del método: def toString(): String

Tipo de devolución: devuelve una representación de string del objeto de pila.

Ejemplo 1:

// Scala program of toString() 
// 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, 5) 
          
        // Print the stack 
        println(s1) 
           
        // Applying toString method  
        val result = s1.toString
          
        // Display output 
        print("String representation of the stack object: " + result) 
           
    } 
} 
Producción:

Stack(1, 2, 3, 4, 5)
String representation of the stack object: Stack(1, 2, 3, 4, 5)

Ejemplo #2:

// Scala program of toString() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating stack
        val s1 = Stack(5, 2, 13, 7, 1, 3) 
          
        // Print the stack 
        println(s1) 
           
        // Applying toString method  
        val result = s1.toString
          
        // Display output 
        print("String representation of the stack object: " + result) 
           
    } 
} 
Producción:

Stack(5, 2, 13, 7, 1, 3)
String representation of the stack object: Stack(5, 2, 13, 7, 1, 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *