摘要: 所属命名空间:System.Collections.Generic public class List<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable List<T>类是 ArrayList 阅读全文
posted @ 2016-11-20 16:37 东锅先生和蛇 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: function unique(arr) { var result = [], hash = {}; for (var i = 0, elem; (elem = arr[i]) != null; i++) { if (!hash[elem]) { result.push(elem); hash[el 阅读全文
posted @ 2016-11-20 16:35 东锅先生和蛇 阅读(687) 评论(0) 推荐(0) 编辑