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


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


在Scala可变集合中,SortedSet toSeq()方法用于返回由SortedSet的所有元素组成的seq。

函数定义: def toSeq:Seq[A]

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

范例1:

// Scala program of toSeq()  
// method  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet(11, 12, 13, 14)  
          
        // Applying toSeq method  
        val result = s1.toSeq 
          
          
        // Display output 
        for (ele <- result) 
            println(ele) 
              
    }  
} 
输出:
11
12
13
14

范例2:

// Scala program of toSeq()  
// method  
import scala.collection.mutable.SortedSet  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
        // Creating a SortedSet  
        val s1 = SortedSet(4, 2, 3, 43, 11, 72)  
          
        // Applying toSeq method  
        val result = s1.toSeq 
          
          
        // Display output 
        for (ele <- result) 
            println(ele) 
              
    }  
} 
输出:
2
3
4
11
43
72



相关用法


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