public class DictionaryEx : IDictionary { /// 用户存储数据的字典 /// private IDictionary _items; /// 默认值 /// private TValue _defaultValue; /// 用于获取值的委托 /// private Converter _getValue; /// 1返回_defaultValue, 2执行_getValue, 0抛出异常 /// private int _mode = 0; #region 构造函数 /// 初始化 DictionaryEx , key不存在时返回defaultValue /// /// 默认值 public DictionaryEx(TValue defaultValue) { _items = new Dictionary (); _defaultValue = defaultValue; _mode = 1; } /// 初始化 DictionaryEx , key不存在时返回defaultValue /// /// 默认值 /// 比较键时要使用对象,如果为null则使用默认比较方法 public DictionaryEx(TValue defaultValue, IEqualityComparer comparer) { _items = new Dictionary (comparer); _defaultValue = defaultValue; _mode = 1; } /// 初始化 DictionaryEx 只读集合, key不存在时返回defaultValue /// /// 默认值 /// 内部字典 public DictionaryEx(TValue defaultValue, IDictionary dictionary) { Assertor.AreNull(dictionary, "dictionary"); _items = dictionary; IsReadOnly = true; _defaultValue = defaultValue; _mode = 1; } /// 初始化 DictionaryEx, key不存在时返回defaultValue /// /// 默认值 /// 内部字典 /// 是否只读 public DictionaryEx(TValue defaultValue, IDictionary dictionary, bool isReadOnly) { Assertor.AreNull(dictionary, "dictionary"); _items = dictionary; IsReadOnly = isReadOnly; _defaultValue = defaultValue; _mode = 1; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 public DictionaryEx(Converter getValue) { Assertor.AreNull(getValue, "getValue"); _items = new Dictionary (); _getValue = getValue; _mode = 2; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 /// 比较键时要使用对象,如果为null则使用默认比较方法 public DictionaryEx(Converter getValue, IEqualityComparer comparer) { Assertor.AreNull(getValue, "getValue"); _items = new Dictionary (comparer); _getValue = getValue; _mode = 2; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 /// 集合是否限制外部修改 public DictionaryEx(Converter getValue, bool isReadOnly) { Assertor.AreNull(getValue, "getValue"); _items = new Dictionary (); _getValue = getValue; IsReadOnly = isReadOnly; _mode = 2; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 /// 比较键时要使用对象 /// 集合是否限制外部修改 public DictionaryEx(Converter getValue, IEqualityComparer comparer, bool isReadOnly) { Assertor.AreNull(getValue, "getValue"); _items = new Dictionary (comparer); _getValue = getValue; IsReadOnly = isReadOnly; _mode = 2; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 /// 内部字典 public DictionaryEx(Converter getValue, IDictionary dictionary) { Assertor.AreNull(getValue, "getValue"); Assertor.AreNull(dictionary, "dictionary"); _items = dictionary; _getValue = getValue; IsReadOnly = true; _mode = 2; } /// 初始化 DictionaryEx 设定getValue委托,key不存在时执行委托,并加入集合 /// /// 获取值的委托 /// 内部字典 /// 是否只读 public DictionaryEx(Converter getValue, IDictionary dictionary, bool isReadOnly) { _items = dictionary; _getValue = getValue; IsReadOnly = isReadOnly; _mode = 2; } /// 初始化 DictionaryEx 只读集合 /// /// 内部字典 public DictionaryEx(IDictionary dictionary) { Assertor.AreNull(dictionary, "dictionary"); IsReadOnly = true; _items = dictionary; _mode = 0; } #endregion private TValue ReturnValue(TKey key) { switch (_mode) { case 1: return _defaultValue; case 2: var value = _getValue(key); lock (this) { _items[key] = value; } return value; default: throw new KeyNotFoundException(); } } public void Add(TKey key, TValue value) { this[key] = value; } public bool ContainsKey(TKey key) { return _items.ContainsKey(key); } public ICollection Keys { get { return _items.Keys; } } public bool Remove(TKey key) { Assertor.AreTrue(IsReadOnly, "集合为只读"); return _items.Remove(key); } public bool TryGetValue(TKey key, out TValue value) { return TryGetValue(key, out value); } public ICollection Values { get { return _items.Values; } } public TValue this[TKey key] { get { TValue value; if (_items.TryGetValue(key, out value)) { return value; } return ReturnValue(key); } set { Assertor.AreTrue(IsReadOnly, "集合为只读"); _items[key] = value; } } public void Add(KeyValuePair item) { this[item.Key] = item.Value; } public void Clear() { Assertor.AreTrue(IsReadOnly, "集合为只读"); _items.Clear(); } public bool Contains(KeyValuePair item) { return _items.Contains(item); } public void CopyTo(KeyValuePair [] array, int arrayIndex) { ((IDictionary )_items).CopyTo(array, arrayIndex); } public int Count { get { return _items.Count; } } public bool IsReadOnly { get; private set; } public bool Remove(KeyValuePair item) { return Remove(item.Key); } public IEnumerator > GetEnumerator() { return _items.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return _items.GetEnumerator(); } }