1

上記の数行を取得したキーを使用しているにもかかわらず、何らかの理由で KeyNotFoundException を取得している次のコードがあります。これがうまくいかない状況を知っている人はいますか?私は困惑しています。ところで 'SchemaElementType は列挙型です。

public class DefaultValue
{
 private Dictionary<Parameter, string> _params;

 public DefaultValue(Dictionary<Parameter, string> parameters)
 {
        _params = parameters;
 }

  public string GetParameterValue(string name)
  {
      foreach(Parameter param in _params.Keys)
      {
           if(param.ParamName.Equals(name))
           {
               // **** Issue here  ****
               return _params[param];
           }
      }
      return string.Empty;
  }
}

[DataContract]
public class Parameter
    {
        #region Members
        private Guid _guid;
        private Guid _formulaGuid;
        private string _name;

        #endregion

        #region Constructor
        public Parameter(Guid guid, Guid formulaGuid, string name, SchemaElementType type)
        {
            ParamGuid = guid;
            FormulaGuid = formulaGuid;
            ParamName = name;
            ParamType = type;
        }

        public Parameter()
        {}

        #endregion

        #region Properties

        [DataMember]
        public Guid ParamGuid
        {
            get { return _guid; }
            set { _guid = value; }
        }

        [DataMember]
        public Guid FormulaGuid
        {
            get { return _formulaGuid; }
            set { _formulaGuid = value; }
        }

        [DataMember]
        public string ParamName
        {
            get { return _name; }
            set { _name = value; }
        }

        [DataMember]
        public SchemaElementType ParamType { get; set; }

        #endregion

        #region Overrides

        public bool Equals(Parameter other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            bool result =other._guid.Equals(_guid);
            result = result && other._formulaGuid.Equals(_formulaGuid);
            result = result && Equals(other._name, _name);
            result = result && Equals(other.ParamType, ParamType);

            return result;
        }

        public override int GetHashCode()
        {
            unchecked
            {
                int result = _guid.GetHashCode();
                result = (result*397) ^ _formulaGuid.GetHashCode();
                result = (result*397) ^ (_name != null ? _name.GetHashCode() : 0);
                result = (result*397) ^ ParamType.GetHashCode();
                return result;
            }
        }

        public override bool Equals(object obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            if (ReferenceEquals(this, obj)) return true;
            if (obj.GetType() != typeof (Parameter)) return false;
            return Equals((Parameter) obj);
        }

        #endregion
    }
4

3 に答える 3

2

Parameter可変であるという事実が心配です。(ディクショナリに追加した) 生成時に使用される値のいずれかGetHashCode()(つまり、すべて) を変更した場合、すべての賭けはオフになり、アイテムが再び表示される保証はありません。私はこれらのパブリック セッターを作成しません。つまり、

    [DataMember]
    public string ParamName // applies to all the properties, not just this one
    {
        get { return _name; }
        private set { _name = value; }
    }

実際には、明示的なフィールドを削除して、C# 3.0 で自動的に実装されたプロパティを使用することになるでしょう。

    [DataMember]
    public string ParamName { get; private set; }

パラメータを変更すると壊れる例として:

    var data = new Dictionary<Parameter, string>();
    Parameter p;
    data.Add((p = new Parameter(Guid.NewGuid(), Guid.NewGuid(), "abc",
        SchemaElementType.A)), "def");
    var dv = new DefaultValue(data);
    string val1 = dv.GetParameterValue("abc"); // returns "def"
    p.ParamGuid = Guid.NewGuid();
    string val2 = dv.GetParameterValue("abc"); // BOOM

最終的な考えとして; 典型的な使用法が によるルックアップである場合string、その名前を内部辞書のキーとして使用しないのはなぜですか? 現時点では、辞書を適切に使用していません。

于 2010-01-19T12:36:01.250 に答える
1

厳密に言えば、数行上の(ルックアップキー)を取得していないのは、ある時点でハッシュキーの計算に使用されたオブジェクトを取得しているということです。

ディクショナリに挿入すると、キーオブジェクトのGetHashKeyメソッドが呼び出されます。キーと値のペアを挿入してからコードが実行されるまでにそれが変わると、説明されている動作が得られます。(GetHashKey noがキーと異なるキーと値のペアに一致する値を返さない場合を除いて、その場合、例外ではなく本当に奇妙な動作が発生します)

挿入時と取得時にハッシュキーの値を探し、それらの間に不一致があるかどうかを確認します

于 2010-01-19T11:56:43.697 に答える
0

KeyValuePair<>クラスを利用できます。

foreach(var item in _params)
{
   if(item.Key.ParamName.Equals(name))
   {
      return item.Value;
   }
}
于 2010-01-19T12:06:17.137 に答える