📜  如何从 Scala 映射中获取所有值

📅  最后修改于: 2022-05-13 01:54:39.976000             🧑  作者: Mango

如何从 Scala 映射中获取所有值

为了从 Scala 映射中获取所有值,我们需要使用values方法(将所有值作为 Iterable 获取),如果我们想将值作为迭代器获取,我们需要使用valuesIterator方法。现在,让我们看看一些例子。
示例 #1:

// Scala program of values()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating a map
        val m1 = Map(3 -> "geeks", 4 -> "for", 2 -> "cs")
          
        // Applying values method
        val result = m1.values
          
        // Displays output
        println(result)
      
    }
}
输出:
MapLike(geeks, for, cs)

在这里,使用方法。
示例 #2:

// Scala program of valuesIterator()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating a map
        val m1 = Map(3 -> "geeks", 4 -> "for", 2 -> "cs")
          
        // Applying valuesIterator method
        val result = m1.valuesIterator
          
        // Displays output
        println(result)
      
    }
}
输出:
non-empty iterator

这里使用了 valuesIterator方法。