首页 > 代码库 > 【Unity笔记】常见集合类System.Collections
【Unity笔记】常见集合类System.Collections
ArrayList:长度可变数组,不限定类型
ArrayList al = new ArrayList();
↓
List:替代ArrayList,限定类型
List list = new List<int>();
Hashtable:哈希表,不限定类型
Hashtable ht = new Hashtable();
↓
Dictionary:替代Hashtable,限定类型
Dictionary<string, string> d = new Dictionary<string, string>();
SortedList:可排序的列表
SortedList<int, int> sl = new SortedList<int, int>(); sl.Add(5, 105); sl.add(2, 102); sl.Add(10, 99); foreach(var v in sl){ Cosole.WriteLine(v.Value); } // 最终排序:key值会从小到大排序
【Unity笔记】常见集合类System.Collections
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。