当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala TreeSet map()用法及代码示例


map()方法用于通过将函数应用于给定TreeSet的所有元素来构建新的TreeSet。

函数定义: def map[B](f: (A) => B): TreeSet[B]

返回类型: It returns a new TreeSet containing all the elements after applying the given function.



范例1:

// Scala program of map()  
// method  
  
// Import TreeSet 
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating TreeSet 
        val q1 = TreeSet(1, 2, 3, 4, 5)   
            
        // Print the TreeSet  
        println(q1)  
          
        // Applying map method   
        val result = q1.map(x => x*x)   
            
        // Displays output   
        print("TreeSet with squared elements: " + result)  
          
    }  
} 
输出:
TreeSet(1, 2, 3, 4, 5)
TreeSet with squared elements: TreeSet(1, 4, 9, 16, 25)

范例2:

// Scala program of map()  
// method  
  
// Import TreeSet 
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating TreeSet 
        val q1 = TreeSet(1, 2, 3, 4, 5)   
            
        // Print the TreeSet  
        println(q1)  
          
        // Applying map method   
        val result = q1.map(x => x*x*x)   
            
        // Displays output   
        print("TreeSet with cubed elements: " + result)  
          
    }  
} 
输出:
TreeSet(1, 2, 3, 4, 5)
TreeSet with cubed elements: TreeSet(1, 8, 27, 64, 125)


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala TreeSet map() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。