C# GetHashCode 的實現方式

來源:互聯網
上載者:User
在項目中,在使用雜湊表時,有時會需要Override GetHashCode。這裡給出一種普遍的做法:

版本1:
實現一個helper,傳遞類型T,返回這個類型的hashcode。函數邏輯很直接,只是做了null check而已;如果obj不為空白,則直接使用obj的hash code。

public class HashHelper{private int _seed = 17;public int Hash<T>(T obj){// why 31?// http://www.php.cn/// shortly, to reduce the conflict of hashing key's distrabutionreturn 31 * _seed + ((obj == null) ? -1 : obj.GetHashCode());}}


為什麼使用了magic number 31? 使用素數乘積可以相對增加唯一性,減少雜湊索引值分配時的衝突;而31則是為了編譯器最佳化的考慮(有效轉換為i<<5-1)。大概搜了一下,這種實現方式來自JAVA中string 的hash code函數。這裡有詳細介紹:
https://computinglife.wordpress.com/2008/11/20/why-do-hash-functions-use-prime-numbers/
實現版本2:
可以擴充這個類成為流暢介面,它可以hash各種類型的,對於實值型別來說,重載的意義在於減少裝箱;對於集合或泛型,則為了讓外部調用更自然,可讀性更強。

public class HashFluent{private int _seed = 17;private int _hashContext;public HashFluent Hash<T>(T obj){// why 31?// http://www.php.cn/// shortly, to reduce the conflict of hashing key's distrabution_hashContext = 31 * _seed + ((obj == null) ? -1 : obj.GetHashCode());return this;}public HashFluent Hash(int? value){_hashContext = 31 * _seed + ((value == null) ? -1 : value.GetHashCode());return this;}public HashFluent Hash(IEnumerable sequence){if (sequence == null){_hashContext = 31 * _hashContext + -1;}else{foreach (var element in sequence){_hashContext = 31 * _hashContext + ((element == null) ? -1 : element.GetHashCode());}}return this;}public override int GetHashCode (){return _hashContext;}// add more overridings here ..// add value types overridings to avoid boxing which is important}

以上就是C# GetHashCode 的實現方式的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.