带有示例的 Scala SortedMap get() 方法
get()方法用于给出与 SortedMap 的键关联的值。这些值在此处作为选项返回,即以 Some 或 None 的形式返回。
Method Definition:def get(key: A): Option[B]
Return Type: It returns the keys corresponding to the values given in the method as argument.
示例 #1:
// Scala program of get()
// 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, "cs" -> 2)
// Applying get method
val result = m1.get("for")
// Displays output
println(result)
}
}
输出:
Some(3)
这里,参数中的键 ie, for存在于上述 SortedMap 中,因此键的值以Some形式返回。
示例 #2:
// Scala program of get()
// 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, "cs" -> 2)
// Applying get method
val result = m1.get("portal")
// Displays output
println(result)
}
}
输出:
None
在这里,参数中的键在 SortedMap 中不存在,因此返回None 。