此方法用于将Queue元素复制到新数组。队列未修改,并且新数组中元素的顺序与从队列开始到结束的元素顺序相同。此方法是O(n)运算,属于
用法:
public virtual object[] ToArray ();
返回值:它返回一个包含从Queue复制的元素的新数组。
下面给出了一些示例,以更好地理解实现:
示例1:
// C# code to illustrate the
// Queue.ToArray Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Queue
Queue myQueue = new Queue();
// Inserting the elements into the Queue
myQueue.Enqueue("Geeks");
myQueue.Enqueue("Geeks Classes");
myQueue.Enqueue("Noida");
myQueue.Enqueue("Data Structures");
myQueue.Enqueue("GeeksforGeeks");
// Converting the Queue into array
Object[] arr = myQueue.ToArray();
// Displaying the elements in array
foreach(Object ob in arr)
{
Console.WriteLine(ob);
}
}
}
输出:
Geeks Geeks Classes Noida Data Structures GeeksforGeeks
示例2:
// C# code to illustrate the
// Queue.ToArray Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Queue
Queue myQueue = new Queue();
// Inserting the elements into the Queue
myQueue.Enqueue(2);
myQueue.Enqueue(3);
myQueue.Enqueue(4);
myQueue.Enqueue(5);
myQueue.Enqueue(6);
// Converting the Queue into array
Object[] arr = myQueue.ToArray();
// Displaying the elements in array
foreach(Object ob in arr)
{
Console.WriteLine(ob);
}
}
}
输出:
2 3 4 5 6
参考:
- https://docs.microsoft.com/en-us/dotnet/api/system.collections.queue.toarray?view=netframework-4.7.2
相关用法
- C# Random.Next()用法及代码示例
- C# Uri.FromHex()用法及代码示例
- C# Uri.IsHexDigit()用法及代码示例
- C# Uri.IsBaseOf(Uri)用法及代码示例
- C# Math.Log()用法及代码示例
- C# Queue.Contains()用法及代码示例
- C# Uri.GetHashCode()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Queue.ToArray Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。