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


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


map()方法用于通过将函数应用于此集合的所有元素来构建新集合。

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

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



范例1:

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

范例2:

// Scala program of map()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a set  
        val s1 = Set(5, 1, 3, 2, 4)  
          
        // Applying map method  
        val result = s1.map(x => x/2) 
          
        // Display output 
        println(result) 
    }  
} 
输出:
Set(2, 0, 1)


相关用法


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