2012年7月24日

摘要: 队列:先入先出 (只允许在队头删除,队尾插入元素)View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace test_queue 7 { 8 class Program 9 {10 static void Main(string[] args)11 {12 // 定义队列13 Queue<string> strList ... 阅读全文
posted @ 2012-07-24 20:25 n_a_n_c 阅读(373) 评论(0) 推荐(0)
 
摘要: 1、cmd命令行下,输入命令“systeminfo”,如果是64位,会在“OS名称”一行标注“x64 Edition”,否则是32位系统。2、开始->运行,输入命令“winver”,如果系统是64位的,会标注“x64 Edition”。3、右击“我的电脑”,选择属性,若是64位的,会标注。 阅读全文
posted @ 2012-07-24 14:27 n_a_n_c 阅读(477) 评论(1) 推荐(0)