Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Scala Mutable SortedMap apply() method with example

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 program of apply()
// method
import scala.collection.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 program of apply()
// method
import scala.collection.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.


My Personal Notes arrow_drop_up
Last Updated : 04 May, 2020
Like Article
Save Article
Similar Reads