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


C# Stack.CopyTo()用法及代码示例


此方法(位于System.Collections命名空间下)用于将Stack复制到现有的一维数组,该数组从指定的数组索引开始。元素将按照后进先出(LIFO)的顺序复制到数组中,类似于连续调用Pop所返回的元素的顺序。此方法是O(n)运算,其中n是Count。

用法:

public void CopyTo (T[] array, int arrayIndex);

参数:


  • array: 一维数组是从Stack复制的元素的目的地。数组必须具有从零开始的索引。
  • arrayIndex: 它是数组中从零开始的索引,复制从该索引开始。

异常:

  • ArgumentNullException:如果数组为null。
  • ArgumentOutOfRangeException:如果索引小于零。
  • ArgumentException:如果数组是多维数组,或者源堆栈中的元素数大于从索引到目标数组末尾的可用空间。
  • InvalidCastException:如果无法将源Stack的类型强制转换为目标数组的类型。

下面给出了一些示例,以更好地理解实现:

示例1:

// C# code to illustrate the 
// Stack.CopyTo() Method 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Creating a Stack 
        Stack myStack = new Stack(); 
  
        // Inserting the elements into the Stack 
        myStack.Push("Geeks"); 
        myStack.Push("Geeks Classes"); 
        myStack.Push("Noida"); 
        myStack.Push("Data Structures"); 
        myStack.Push("GeeksforGeeks"); 
  
        // Creating a string array arr 
        string[] arr = new string[myStack.Count]; 
  
        // Copying the elements of 
        // stack into array arr 
        myStack.CopyTo(arr, 0); 
  
        // Displaying the elements 
        // in array arr 
        foreach(string str in arr) 
        { 
            Console.WriteLine(str); 
        } 
    } 
}
输出:
GeeksforGeeks
Data Structures
Noida
Geeks Classes
Geeks

示例2:

// C# code to illustrate the 
// Stack.CopyTo() Method 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Creating a Stack 
        Stack myStack = new Stack(); 
  
        // Inserting the elements 
        // into the Stack 
        myStack.Push(2); 
        myStack.Push(3); 
        myStack.Push(4); 
        myStack.Push(5); 
        myStack.Push(6); 
  
        // Creating an Integer array arr 
        int[] arr = new int[myStack.Count]; 
  
        // Copying the elements of  
        // stack into array arr 
        myStack.CopyTo(arr, 0); 
  
        // Displaying the elements 
        // in array arr 
        foreach(int i in arr) 
        { 
            Console.WriteLine(i); 
        } 
    } 
}
输出:
6
5
4
3
2

参考:



相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Stack.CopyTo() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。