此文记录的是一个Hashtable的增强版本,以前没泛型的时候笔者喜欢用Hashtable,性能刚刚的。
/*** Hashtable工具类 Austin Liu 刘恒辉 Project Manager and Software Designer E-Mail: lzhdim@163.com Blog: http://lzhdim.cnblogs.com Date: 2024-01-15 15:18:00 ***/ namespace Lzhdim.LPF.Utility { using System.Collections; /// <summary> /// The Object inherit of Hashtable /// </summary> public class HashtableExtend : Hashtable { /// <summary> /// 成员变量 /// </summary> private Hashtable hto = null; /// <summary> /// 构造函数 /// </summary> public HashtableExtend() { this.hto = new Hashtable(); } /// <summary> /// Add New item /// </summary> /// <param name="key"></param> /// <param name="value"></param> public override void Add(object key, object value) { this.hto.Add(key, value); } /// <summary> /// Create a copy Hashtable of the Object /// </summary> /// <returns></returns> public Hashtable Copy() { Hashtable ht = new Hashtable(); foreach (DictionaryEntry de in this.hto) { ht.Add(de.Key, de.Value); } return ht; } /// <summary> /// Remove a item by key /// </summary> /// <param name="key"></param> public override void Remove(object key) { this.hto.Remove(key); } /// <summary> /// ASC Sort by key /// </summary> public void SortByKeyASC() { ArrayList arrList = new ArrayList(this.hto.Keys); arrList.Sort(); Hashtable ht = new Hashtable(); for (int i = 0; i < arrList.Count; i++) { ht.Add(arrList[i], this.hto[arrList[i]]); } this.hto.Clear(); this.hto = ht; } /// <summary> /// DESC Sort by key /// </summary> public void SortByKeyDESC() { ArrayList arrList = new ArrayList(this.hto.Keys); arrList.Sort(); Hashtable ht = new Hashtable(); for (int i = arrList.Count - 1; i >= 0; i++) { ht.Add(arrList[i], this.hto[arrList[i]]); } this.hto.Clear(); this.hto = ht; } } }
Austin Liu 刘恒辉
Project Manager and Software Designer E-Mail:lzhdim@163.com Blog:https://lzhdim.cnblogs.com 欢迎收藏和转载此博客中的博文,但是请注明出处,给笔者一个与大家交流的空间。谢谢大家。 |