📜  Scala Mutable SortedSet map() 方法

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

Scala Mutable SortedSet map() 方法

在 Scala 可变集合中, map()方法用于通过将函数应用于此 SortedSet 的所有元素来构建新的 SortedSet。

示例 #1:

// Scala program of map() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(5, 1, 3, 2, 4) 
          
        // Applying map method 
        val result = s1.map(x => x*x)
          
        // Display output
        println(result)
    } 
} 
输出:
TreeSet(1, 4, 9, 16, 25)

示例 #2:

// Scala program of map() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(5, 12, 3, 2, 4) 
          
        // Applying map method 
        val result = s1.map(x => x/2)
          
        // Display output
        println(result)
    } 
} 
输出:
TreeSet(1, 2, 6)