c# cook book -Linq 關於Object的比較

來源:互聯網
上載者:User

標籤:

實際項目中經常用到 Union,Distinct,INtersect,Execpt對列表進行處理

一般來說要首先重寫 Equals 和GetHashCode方法

首先看為重寫的情況:

namespace LinqCookBook{    class Program    {        static void Main(string[] args)        {            var model1 = new List<model>            {                new model(){name = "1"},                new model(){name="2"},                new model(){name = "3"}            };            var model2 = new List<model>            {                new model() {name = "1"},                new model() {name = "2"},                new model() {name = "3"}            };            var list = model1.Union(model2).Distinct();            foreach (var item in list)            {                Console.WriteLine(item.name);            }        }    }    public class model    {        public string name { get; set; }        //public override bool Equals(object obj)        //{        //    return obj.GetHashCode().Equals(this.GetHashCode());        //}        //public override int GetHashCode()        //{        //    return this.name.GetHashCode();        //}    }}

運行結果:

 

重寫後:

namespace LinqCookBook{    class Program    {        static void Main(string[] args)        {            var model1 = new List<model>            {                new model(){name = "1"},                new model(){name="2"},                new model(){name = "3"}            };            var model2 = new List<model>            {                new model() {name = "1"},                new model() {name = "2"},                new model() {name = "3"}            };            var list = model1.Union(model2).Distinct();            foreach (var item in list)            {                Console.WriteLine(item.name);            }        }    }    public class model    {        public string name { get; set; }        public override bool Equals(object obj)        {            return obj.GetHashCode().Equals(this.GetHashCode());        }        public override int GetHashCode()        {            return this.name.GetHashCode();        }    }}

運行結果:

 

原因:

當元素比較時,會使用預設規則比較,通過equals和gethashcode來確定應用類的一個執行個體和另一個執行個體是否相同。通常是不相同的,因為他們指向了不同的記憶體位址,導致雜湊值是不同的。重寫以後,認為某些屬性值相同則認為相同。

 

c# cook book -Linq 關於Object的比較

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.