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


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


map()方法用于将声明的函数应用于列表的所有元素。

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

返回类型: It returns a new list after applying the stated function to all the elements of the list.



范例1:

// Scala program of map() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a list 
        val m1 = List(2, 3, 5, 7, 8) 
          
        // Applying map method 
        val result = m1.map(x => x*3) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
List(6, 9, 15, 21, 24)

范例2:

// Scala program of map() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a list 
        val m1 = List(2, 3, 5, 7, 8) 
          
        // Applying map method 
        val result = m1.map(x => x*x) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
List(4, 9, 25, 49, 64)


相关用法


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