Computer >> Máy Tính >  >> Lập trình >> C#

Sao chép các phần tử Hàng đợi sang mảng một chiều trong C #

Phương thức Queue .CopyTo (T [], Int32) được sử dụng để sao chép các phần tử Queue sang mảng 1-D.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ -

using System;
using System.Collections.Generic;
public class Demo{
   public static void Main(){
      Queue<string> queue = new Queue<string>();
      queue.Enqueue("K");
      queue.Enqueue("T");
      String[] strArr = new String[4];
      strArr[0] = "One";
      strArr[1] = "Two";
      strArr[2] = "Three";
      strArr[3] = "Four";
      Console.WriteLine("\nArray elements: ");
      for (int i = 0; i < strArr.Length; i++){
         Console.WriteLine(strArr[i]);
      }
      queue.CopyTo(strArr, 2);
      Console.WriteLine("\nAfter copying array contains: ");
      for (int i = 0; i < strArr.Length; i++){
         Console.WriteLine("arr[{0}] : {1}", i, strArr[i]);
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

One
Two
Three
Four
After copying array contains:
arr[0] : One
arr[1] : Two
arr[2] : K
arr[3] : T