会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
我思考..我存在..
好好学习..天天向上.. 159753258 楼上我老婆,楼下是我! 呼叫中心、小型信息管理系统,电话:13516218837
博客园
首页
新随笔
联系
管理
订阅
QueueGeneric and Queue
Queue<T>
and
Queue
Class Diagrams
Using it.
code
1
using
System;
2
using
System.Collections.Generic;
3
class
Program
4
{
5
6
static
void
Main()
7
{
8
Queue
<
int
>
queue
=
new
Queue
<
int
>
();
9
queue.Enqueue(
1
);
10
queue.Enqueue(
2
);
11
Console.WriteLine(queue.Dequeue());
12
Console.ReadKey();
13
}
14
}
posted @
2007-05-11 09:47
南守拥
阅读(
159
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告