摘要: 1.最常用的方法是用来遍历集合 /** **第一个参数:表示循环的初始值,或初始条件,这里是i=0; **第二个参数:是循环的条件,这里是当i小于list的长度时; **第三个参数:每次循环要改变的操作,这里是i++; **/ for(int i=0;i<list.size();i++)... 阅读全文
posted @ 2015-01-13 11:12 一菲聪天 阅读(2443) 评论(0) 推荐(0) 编辑
摘要: public Dictionary GetSourceDisksElements(String section){ section = "[" + section; Dictionary keyToValue = new Dictionary(); //打开... 阅读全文
posted @ 2015-01-13 11:01 一菲聪天 阅读(4983) 评论(0) 推荐(0) 编辑
摘要: 直接代码: 1 public Dictionary MergeDictionary(Dictionary first, Dictionary second) 2 { 3 if (first == null) first = new Dictionary();... 阅读全文
posted @ 2015-01-13 10:30 一菲聪天 阅读(15743) 评论(0) 推荐(1) 编辑