Where is my way?

 

2011年10月6日

c#学习(一)队列

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace QueueEx{ class Program { static void Main(string[] args) { Queue<int> iQueue = new Queue<int>();//构造一个整型集合队列 for (int i = 0; i < 10; i++) iQueue.Enqueu... 阅读全文

posted @ 2011-10-06 21:11 ManLoveGirls 阅读(322) 评论(0) 推荐(0) 编辑

导航