Comparing Double.NaN with itself

后端 未结 4 1290
迷失自我
迷失自我 2021-02-06 21:58

I am stuck trying to find out why these two operations return different values:

  1. Double.NaN == Double.NaN returns false
  2. Do
4条回答
  •  清酒与你
    2021-02-06 22:13

    The reason for the difference is simple, if not obvious.

    If you use the equality operator ==, then you're using the IEEE test for equality.

    If you're using the Equals(object) method, then you have to maintain the contract of object.Equals(object). When you implement this method (and the corresponding GetHashCode method), you have to maintain that contract, which is different from the IEEE behaviour.

    If the Equals contract was not upheld, then the behaviour of hash tables would break.

    var map = new Dictionary();
    map[double.NaN] = "NaN";
    var s = map[double.NaN];
    

    If !double.NaN.Equals(double.NaN), you'd never get your value out of the dictionary!

    If the previous sentence does not make sense, then understand that the mechanics of hashing (used in Dictionary, HashSet, etc) use both the object.Equals(object) and object.GetHashCode() methods extensively, and rely upon guarantees of their behaviour.

提交回复
热议问题