Queue代表一个first-in,对象的先出集合。当您需要对项目进行 first-in、first-out 访问时使用它。当你在列表中添加一个项目时,它被称为入队,当你删除一个项目时,它被称为双端队列。 Queue.ToArray 方法用于将 Queue 元素复制到新数组中。
属性:
- Enqueue将元素添加到队列的末尾。
- Dequeue从队列的开头删除最旧的元素。
- Peek返回位于队列开头但不将其从队列中删除的最旧元素。
- 队列的容量是队列可以容纳的元素数量。
- 随着元素被添加到队列中,容量会根据需要通过重新分配内部数组来自动增加。
- Queue 接受 null 作为引用类型的有效值并允许重复元素。
用法:
public virtual object[] ToArray();
下面给出了一些示例,以更好地理解实现:
范例1:
// C# code to Convert Queue to array
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a Queue of strings
Queue<string> myQueue = new Queue<string>();
// 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
String[] arr = myQueue.ToArray();
// Displaying the elements in array
foreach(string str in arr)
{
Console.WriteLine(str);
}
}
}
输出:
Geeks Geeks Classes Noida Data Structures GeeksforGeeks
范例2:
// C# code to Convert Queue to array
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a Queue of Integers
Queue<int> myQueue = new Queue<int>();
// 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
int[] arr = myQueue.ToArray();
// Displaying the elements in array
foreach(int i in arr)
{
Console.WriteLine(i);
}
}
}
输出:
2 3 4 5 6
参考:
相关用法
- C# Queue.Enqueue()用法及代码示例
- C# Queue.Dequeue用法及代码示例
- C# Queue.Contains()用法及代码示例
- C# Queue.Clear用法及代码示例
- C# Queue.Count用法及代码示例
- C# Queue.IsSynchronized用法及代码示例
- C# Queue.CopyTo()用法及代码示例
- C# Queue.GetEnumerator用法及代码示例
- C# Queue.Peek用法及代码示例
- C# Queue.Synchronized()用法及代码示例
- C# Queue.ToArray用法及代码示例
- C# Queue.Equals()用法及代码示例
- C# Queue.Clone()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 C# | Convert Queue To array。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。