Scala Map: Retrieving values by key
Write a Scala program to create a map and retrieve the value associated with a given key.
Sample Solution:
Scala Code:
Sample Output:
Map: Map(Red -> 1, Green -> 2, Blue -> 3, Orange -> 4) The value associated with key 'Blue' is: 3
Explanation:
In the above exercise -
- First, we create a map "color_map" using the Map constructor and provide key-value pairs.
- To retrieve the value associated with a given key, we use the "getOrElse()" method on the map. We pass the key we want to retrieve and provide a default value if the key is not found on the map.
- In this example, we retrieve the value associated with the key "Blue". If the key is found, the corresponding value is assigned to the value variable. Otherwise, the default value of "Key not found" is assigned.
- Finally, we use println to print the result, including the key and the retrieved value.
Scala Code Editor :
Previous: Find the size of a map.
Next: Update values by key.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics