c#队列取值_在队列的开头获取对象– C#中的窥视操作
要在隊列的開始處獲取對象,代碼如下-
示例using?System;
using?System.Collections.Generic;
public?class?Demo?{
public?static?void?Main()?{
Queue?queue?=?new?Queue();
queue.Enqueue("A");
queue.Enqueue("B");
queue.Enqueue("C");
queue.Enqueue("D");
queue.Enqueue("E");
queue.Enqueue("F");
queue.Enqueue("G");
Console.WriteLine("Count?of?elements?=?"+queue.Count);
Console.WriteLine("Element?at?the?beginning?of?queue?=?"?+?queue.Peek());
}
}
輸出結果
這將產生以下輸出-Count?of?elements?=?7
Element?at?the?beginning?of?queue?=?A
示例
讓我們看另一個例子-using?System;
using?System.Collections.Generic;
public?class?Demo?{
public?static?void?Main()?{
Queue?queue?=?new?Queue();
queue.Enqueue("A");
queue.Enqueue("B");
queue.Enqueue("C");
queue.Enqueue("D");
queue.Enqueue("E");
queue.Enqueue("F");
queue.Enqueue("G");
Console.WriteLine("Count?of?elements?=?"+queue.Count);
Console.WriteLine("Element?at?the?beginning?of?queue?=?"?+?queue.Peek());
queue.Enqueue("H");
queue.Enqueue("I");
queue.Enqueue("J");
Console.WriteLine("Count?of?elements?=?"+queue.Count);
Console.WriteLine("Element?at?the?beginning?of?queue?=?"?+?queue.Peek());
}
}
輸出結果
這將產生以下輸出-Count?of?elements?=?7
Element?at?the?beginning?of?queue?=?A
Count?of?elements?=?10
Element?at?the?beginning?of?queue?=?A
總結
以上是生活随笔為你收集整理的c#队列取值_在队列的开头获取对象– C#中的窥视操作的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python3怎样交换数字顺序_pyth
- 下一篇: 单模光电转换器怎么接_以太网光纤收发器怎