NET 集合之 Queue

    Queue 表示对象的先进先出集合。队列在按接收顺序存储消息方面非常有用,以便于进行顺序处理。此类将队列作为循环数组实现。存储在 Queue 中的对象在一端插入,从另一端移除。

None.gif using  System;
None.gif
using  System.Collections;
None.gif
using  System.Collections.Generic;
None.gif
using  System.Linq;
None.gif
using  System.Text;
None.gif
None.gif
namespace  ConsoleApp
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    
class Program
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Console.Title 
= "This is a Test";
InBlock.gif
InBlock.gif            Test();
InBlock.gif
InBlock.gif            Console.ReadLine();
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
static void Test()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Func
<stringstring> select = str => str.ToUpper();
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif            
string[] names = dot.gif"a""b""e","e","n" };
InBlock.gif
InBlock.gif            var mynames 
= names.Select(select).ToArray();
InBlock.gif
InBlock.gif            var queue 
= new Queue();// 队列
InBlock.gif

InBlock.gif            
foreach (var item in mynames)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                queue.Enqueue(item);
// 入队
ExpandedSubBlockEnd.gif
            }

InBlock.gif
InBlock.gif            Array.ForEach
<Object>(queue.ToArray(), str => Console.WriteLine(str));
InBlock.gif
InBlock.gif            queue.Dequeue(); 
// 出队
InBlock.gif

InBlock.gif            Console.WriteLine(
"===================分隔线===================");
InBlock.gif
InBlock.gif            Array.ForEach
<Object>(queue.ToArray(), str => Console.WriteLine(str));
InBlock.gif
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif
output:
A
B
E
E
N
===================分隔线===================
B
E
E
N


转载于:https://www.cnblogs.com/abeen/archive/2008/12/10/1352073.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值