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


Scala Mutable SortedSet toMap()用法及代码示例


在Scala可变集合中,使用toMap()方法来返回由SortedSet的所有元素组成的映射。

函数定义: def toMap[T, U]:Map[T, U]

返回类型: It returns a map consisting of all the elements of the SortedSet.

范例1:

// Scala program of toMap()  
// method  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet((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  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet((12, 2), (13, 4), (15, 6))  
          
        // Applying toMap method  
        val result = s1.toMap 
          
        // Display output 
        println(result) 
              
    }  
} 
输出:
Map(12 -> 2, 13 -> 4, 15 -> 6)



相关用法


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