带有示例的 Scala Map 键()方法
keys()方法用于为映射的所有键提供迭代器。
Method Definition: def keys: Iterable[A]
Return Type: It returns an iterator over all the keys of the map.
示例 #1:
// Scala program of keys()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating map
val m1 = Map("geeks" -> 5, "for" -> 3, "cs" -> 2)
// Applying keys method
val result = m1.keys
// Displays output
println(result)
}
}
输出:
Set(geeks, for, cs)
示例 #2:
// Scala program of keys()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating map
val m1 = Map("geeks" -> 5, "for" -> 3, "geeks" -> 5)
// Applying keys method
val result = m1.keys
// Displays output
println(result)
}
}
输出:
Set(geeks, for)
因此,相同的密钥只被使用一次。