toMap()方法用于返回由集合的所有元素组成的映射。
函数定义: def toMap[T, U]: Map[T, U]
返回类型: It returns a map consisting of all the elements of the set.
范例1:
// Scala program of toMap()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set((1, 2), (3, 4), (5, 6))
// Applying toMap method
val result = s1.toMap
// Display output
println(result)
}
}
输出:
Map(1 -> 2, 3 -> 4, 5 -> 6)
范例2:
// Scala program of toMap()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set((12, 2), (13, 4), (15, 6))
// Applying toMap method
val result = s1.toMap
// Display output
println(result)
}
}
输出:
Map(12 -> 2, 13 -> 4, 15 -> 6)
相关用法
- Scala Queue toMap()用法及代码示例
- Scala TreeSet toMap()用法及代码示例
- Scala SortedSet toMap()用法及代码示例
- Scala Stack toMap()用法及代码示例
- Scala Map take()用法及代码示例
- Scala Set &()用法及代码示例
- Scala Map min()用法及代码示例
- Scala Int until(end: Int)用法及代码示例
- Scala Int max()用法及代码示例
- Scala Set &~()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Set toMap() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。