Scala Map get() 方法与示例
get()方法用于给出与地图键关联的值。这些值在此处作为选项返回,即以 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
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map("geeks" -> 5, "for" -> 3, "cs" -> 2)
// Applying get method
val result = m1.get("for")
// Displays output
println(result)
}
}
输出:
Some(3)
这里,参数中的键,即for存在于上述映射中,因此,键的值以Some形式返回。
示例 #2:
// Scala program of get()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map("geeks" -> 5, "for" -> 3, "cs" -> 2)
// Applying get method
val result = m1.get("portal")
// Displays output
println(result)
}
}
输出:
None
在这里,参数中的键不存在于映射中,因此返回None 。