transform()方法用于将Map的元素转换为可变Map。
函数定义: def transform(f: (K, V) => V): Map.this.type
返回类型: It transforms all the elements of the map and returns them into a mutable map.
范例1:
// Scala program of transform()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map(3 -> "geeks", 4 -> "for", 2 -> "cs")
// Applying transform method
val result = m1.transform((key,value) => value.toUpperCase)
// Displays output
println(result)
}
}
输出:
Map(3 -> GEEKS, 4 -> FOR, 2 -> CS)
范例2:
// Scala program of transform()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a map
val m1 = Map(3 -> "geeks", 4 -> "for", 4 -> "for")
// Applying transform method
val result = m1.transform((key,value) => value.toUpperCase)
// Displays output
println(result)
}
}
输出:
Map(3 -> GEEKS, 4 -> FOR)
相关用法
- Scala SortedMap transform()用法及代码示例
- Scala Map min()用法及代码示例
- Scala Int abs()用法及代码示例
- Scala Int until(end: Int)用法及代码示例
- Scala Set ++()用法及代码示例
- Scala Map get()用法及代码示例
- Scala Map max()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Map transform() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。