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


Scala Iterator toArray()用法及代码示例


toArray()方法属于类Abstract迭代器的具体值成员。它用于将声明的集合转换为数组。

函数定义: def toArray: Array[A]

返回类型: It returns an array from the elements of the iterator.



范例1:

// Scala program of toArray() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating a Iterator  
        val iter = Iterator(2, 3, 5, 7, 8, 9) 
          
        // Applying toArray method  
        val result = iter.toArray 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
[I@506e1b77

范例2:

// Scala program of toArray() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating a Iterator  
        val iter = Iterator(0, 1, 10) 
          
        // Applying toArray method  
        val result = iter.toArray 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
[I@3535dee8


相关用法


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