當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Stack copyToArray()用法及代碼示例


在 Scala Stack class,copyToArray()方法用於將堆棧的元素複製到Array中。

函數定義: def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int

參數:
xs: It denotes the array where elements are copied.
start: It denotes the starting index for the copy to takes place. Its default value is 0.
len: It denotes the number of elements to copy. Its default value is the length of the set.



返回類型: It returns the elements of the stack to an array.

範例1:

// Scala program of copyToArray()  
// method  
  
// Import Stack  
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a stack  
        val s1 = Stack(1, 2, 3)  
          
        // Print the stack  
        println(s1)  
          
        // Creating an array  
        val arr: Array[Int] = Array(0, 0, 0, 0, 0)   
          
        // Applying copyToArray method  
        s1.copyToArray(arr)  
          
        // Displays output  
        println("Elements in the array: ") 
          
        for(elem <- arr)   
            print(elem + " ") 
    }  
} 
輸出:
Stack(1, 2, 3)
Elements in the array: 
1 2 3 0 0

範例2:

// Scala program of copyToArray()  
// method  
  
// Import Stack  
import scala.collection.mutable._
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a stack  
        val s1 = Stack(1, 2, 3)  
          
        // Print the stack  
        println(s1)  
          
        // Creating an array  
        val arr: Array[Int] = Array(0, 0, 0, 0, 0)   
          
        // Applying copyToArray method  
        s1.copyToArray(arr, 1, 2)  
          
        // Displays output  
        println("Elements in the array: ") 
          
        for(elem <- arr)   
            print(elem + " ") 
    }  
} 
輸出:
Stack(1, 2, 3)
Elements in the array: 
0 1 2 0 0

堆棧類,div>



相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Stack copyToArray() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。