Método Scala Mutable SortedSet +()

En las colecciones mutables de Scala, el método +() se utiliza para crear un nuevo SortedSet con un elemento adicional a menos que el elemento ya esté presente.

Definición del método: def +(elemento: A): SortedSet[A]

Tipo de devolución: devuelve un nuevo SortedSet con un elemento adicional a menos que el elemento ya esté presente.

Ejemplo 1:

// Scala program of +() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(4, 8, 9, 1, 7) 
          
        // Applying +() method 
        val result = s1.+(5)
              
        // Display output
        print(result) 
    } 
} 
Producción:

TreeSet(1, 4, 5, 7, 8, 9)

Ejemplo #2:

// Scala program of +() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(41, 12, 23, 43, 1, 72) 
          
        // Applying +() method 
        val result = s1.+(100)
              
        // Display output
        print(result)    
    } 
} 
Producción:

TreeSet(1, 12, 23, 41, 43, 72, 100)

Publicación traducida automáticamente

Artículo escrito por Shivam_k 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 *