📜  C#中的Stack.CopyTo()方法

📅  最后修改于: 2021-05-29 18:59:45             🧑  作者: Mango

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

句法:

public void CopyTo (T[] array, int 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

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.stack.copyto?view=netframework-4.7.2