Scala Map apply() 方法与示例
apply()用于搜索指定映射中的键。
Method Definition: m1.apply(“key”)
Here m1 is map.
Return Type: It returns the value of the key to be searched.
示例 #1:
// Scala program of apply()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map("geeks" -> 5, "for" -> 3, "geeks" -> 5)
// Applying apply method
val result = m1.apply("for")
// Displays output
println(result)
}
}
输出:
3
示例 #2:
// Scala program of apply()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map("geeks" -> 5, "for" -> 3, "geeks" -> 1)
// Applying apply method
val result = m1.apply("geeks")
// Displays output
println(result)
}
}
输出:
1
在这里,相同的键存在不同的值,因此返回最后一个键的值。