Scala Mutable SortedMap foreach() 方法与示例
foreach() 方法用于将给定函数应用于 SortedMap 的所有元素。
Method Definition: def foreach(f: ((A, B)) => Unit): Unit
Return Type: It returns all the elements of the SortedMap after applying the given function to each of them.
示例 #1:
// Scala program of foreach()
// method
import scala.collection.SortedMap
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedMap
val m1 = SortedMap(3 -> "geeks", 1 -> "for", 2 -> "cs", 6 -> "geeks")
// Applying foreach method and
// displaying output
val result = m1.foreach(x => println("key=" + x._1 + ", value=" + x._2))
}
}
输出:
key=1, value=for
key=2, value=cs
key=3, value=geeks
key=6, value=geeks
示例 #2:
// Scala program of foreach()
// method
import scala.collection.SortedMap
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedMap
val m1 = SortedMap(3 -> "geeks", 1 -> "for", 2 -> "cs", 3 -> "geeks")
// Applying foreach method and
// displaying output
val result = m1.foreach(x => println("key=" + x._1 + ", value=" + x._2))
}
}
输出:
key=1, value=for
key=2, value=cs
key=3, value=geeks
因此,相同的元素只被采用一次。