Open In App

Scala SortedMap apply() method with example

Last Updated : 02 Nov, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The apply() is utilized to search a key in the stated SortedMap.
Method Definition: m1.apply("key") Here m1 is SortedMap. Return Type: It returns the value of the key to be searched.
Example #1: Scala
// Scala program of apply()
// method
import scala.collection.immutable.SortedMap

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Creating a SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "geeks" -> 5)
        
        // Applying apply method
        val result = m1.apply("for") 
        
        // Displays output
        println(result)
    
    }
}
Output:
3
Example #2: Scala
// Scala program of apply()
// method
import scala.collection.immutable.SortedMap

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Creating a SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "geeks" -> 1)
        
        // Applying apply method
        val result = m1.apply("geeks") 
        
        // Displays output
        println(result)
    
    }
}
Output:
1
Here, identical keys are present with different values so, the value of the last one is returned.

Article Tags :

Similar Reads