黒龍's Blog

明日から役立つ無駄知識をあなたに(仮)

ホーム 連絡をする 同期する ( RSS 2.0 ) Login
投稿数  170  : 記事  0  : コメント  2719  : トラックバック  26

ニュース

わんくま同盟に参加させていただきました。
どうぞよろしくお願いします。

自己紹介

コミュニティ

  • わんくま同盟
    わんくま同盟

書庫

どうにもわからないEqualsやらGetHashCodeやらその辺のお話。

R#がリファレンスだろjkとかIEquatable<T>は値型用だから参照型への実装は云々など枝葉の話はよく聞くんですがどうにも実装しててややこしいので整理の意味でエントリ。

特にポリモーフィズムな型の等値性判断のあたりを何とかしたいなと。。。

関係ありそうなところをまず張っときます。

まずは基本のobject.Equals(object obj)

public class Test
{
    public string Name { get; set; }
    public string Address { get; set; }
}

みたいな型があったとしたら実装は

public override bool Equals(System.Object obj)
{
    // If parameter is null return false.
    if (obj == null)
    {
        return false;
    }

    // If parameter cannot be cast to Point return false.
    Test p = obj as Test;
    if ((System.Object)p == null)
    {
        return false;
    }

    // Return true if the fields match:
    return (Name == p.Name) && (Address == p.Address);
}

忘れずにGetHashCodeも実装

public override int GetHashCode()
{
    var hash = Name.GetHashCode();
    hash += 1234 ^ Address.GetHashCode();
    return hash;
}

この辺はまぁ割と普通の実装なのでそうはずしてはないかと。

で、値型でのBoxing回避やらDictionaryとかの流れでIEquatable<T>、おまけで==と!=あたりを実装してくかと思います。
この辺で実装が色々バリエーションが出てくるんですがベーシックに参照比較を織り交ぜつつこんな感じで。

public bool Equals(Test other)
{
    if (Object.ReferenceEquals(other, null))
    {
        return false;
    }

    if (Object.ReferenceEquals(this, other))
    {
        return true;
    }

    if (this.GetType() != other.GetType())
        return false;

    return (Name == other.Name) && (Address == other.Address);
}

で、もともとのObjrct.Equalsは型安全なほうに委譲。

public override bool Equals(object obj)
{
    return this.Equals(obj as Test);
}

ここからが割と本題で派生クラスで実装する場合。まぁほとんど同じですがメンバの比較やGetHashCodeでbase.Equalsみたいな感じで追加したメンバだけを入れ込んでいくのがベーシックなやり方だと思います。

public class TestEx : Test, IEquatable<TestEx>
{
    public string PhoneNumber { get; set; }

    public override bool Equals(object obj)
    {
        return base.Equals((TestEx)obj);
    }

    public override int GetHashCode()
    {
        var hash = base.GetHashCode();
        hash += 1234 ^ PhoneNumber.GetHashCode();
        return hash;
    }

    public bool Equals(TestEx other)
    {
        return base.Equals(other) && PhoneNumber == other.PhoneNumber;
    }
}

この辺からちょっぴり自信がないですがまぁだいたいこんな感じかと。

で、こういったケースだとそれぞれの型の比較はいいんですが基底クラスで比較した場合(今回だとTest)にTestのメンバのみで比較されちゃうのでうまくいきません。ポリモーフィズムな作りなのでoverrideされたものがうまく使われてほしいところですが呼び出し時にObjectにするなりしないと結局うまくいかないです。こういうものだって言われればそうなんですが==とかオーバロードした時には派生型で見てほしいのが人情かと思います。
もちろん基底側でObject.Equalsを軸にすれば期待する結果になるんですがタイプセーフじゃなくなる(ってほどでもないかも)のはどうにも違う感じなので。

派生クラスでは基底クラスのIEquatable<T>を実装するのが実はルールだったりするのかしらん?だとしたらヘビーすぎるのでIEquatable<T>いらにゃい!と言いたいです。はい。

おそらく根本的な理解がないのでMSDNやらのバラバラな実装に振り回されてるんだとは思いますが(EqualsやIEquatableの)おおもとの設計意図や最適解を導ければなぁと思いエントリしました。みなさんこんなケースではどう実装してますか?

投稿日時 : 2011年10月26日 0:20

コメント

# re: IEquatable&lt;T&gt;のリファレンス実装って無いの? 2011/10/26 18:45 antsk
継承の絡む型でIEquatableをつけたかったら、自分なら
protected virtual EqualsCore(Test obj)
なメソッドを基底につけて、インターフェース実装はそちらに委譲するだけにします。

でもIEquable<T>自体が継承向きじゃないんじゃないですかね?このへんとか。
http://stackoverflow.com/questions/3289440/why-was-iequatable-t-not-made-contravariant-in-t-for-c-sharp-4-0

自分がベストだと思ってる方針は
 ・class型でEqualsオーバーライドは基本的にしない
 ・sealedかつImmutableな型なら、Equalsオーバーライドを検討する(struct型は、ほぼ自動的にこの条件を満たす)
 ・そうでない型で比較が必要なら、比較用のクラスXXX[Equality]Comparerを用意する
ってとこです。


# re: IEquatable&lt;T&gt;のリファレンス実装って無いの? 2011/10/27 23:04 黒龍
レスが遅くなりました。
なるほど。Immutableな型専用ととらえる感じですね。
まぁ用途に応じてのものなのですが継承向きじゃないってのは同意です。
class型で基本的にオーバーライドしない場合というのはEqualsでの等価判定に否定的って感じでしょうか。
そういえばEqualityComparerってのもありましたね。Dictionary用の特殊比較なイメージだったんですがLinqでも生き残ってるので考察に含めないとですね。

個人的にはEqualsや==にはclassであっても等価判定を求めたいんですよね。同値であればRefferenceEqualsがあるし^^;

# re: IEquatable&lt;T&gt;のリファレンス実装って無いの? 2011/10/30 16:18 antsk
Equalsメソッドのリファレンスで、
http://msdn.microsoft.com/ja-jp/library/ms131190.aspx
> クラスのオブジェクトが配列またはジェネリック コレクション オブジェクトに格納される可能性に対処するために、オブジェクトを簡単に識別し、操作できるように IEquatable(Of T) を実装することをお勧めします

というのを見て、Eqaulsの役割は「同じかどうか判断する」より高レベルの「コレクションから要素を取り出す」だと推察したのです。
そうすると、下記のようなクラス
class Foo
{
 public int Data{get;set;}
 public override bool Equals(object other)
 {
  return this.Data == ((Foo)other).Data;
 }
}
があったとき、
 var foo = new Foo(){ Data = 100, };
 var bar = new Foo(){ Data = 100, };
 var list = new List(){ foo, bar, };

 list.Remove(bar); // fooのインスタンスが削除される
 bar.Data = 150;
 list.Contains(foo); // 見つからない
という具合に、たまたま同じ状態だった意図しないインスタンスを操作してしまうことがあるので
Immutable限定が良いだろう、というのが自分の考えです。


# シャネル 時計 j12 2012/12/11 11:00 http://www.chaneldokei.com/tag/%E3%82%B7%E3%83%A3%
marked this. please try more!

# ivermectin 3 mg 2021/09/28 13:44 MarvinLic
stromectol usa http://stromectolfive.online# stromectol for humans

# ivermectin cost 2021/10/31 23:53 DelbertBup
ivermectin 1 cream 45gm http://stromectolivermectin19.online# ivermectin uk
ivermectin buy australia

# ivermectin canada 2021/11/01 17:42 DelbertBup
ivermectin 12 https://stromectolivermectin19.com/# ivermectin australia
cost of ivermectin cream

# ivermectin cream canada cost 2021/11/03 16:02 DelbertBup
ivermectin canada http://stromectolivermectin19.online# ivermectin buy australia
ivermectin buy online

# sildenafil 20 mg tablet uses 2021/12/07 6:59 JamesDat
https://viasild24.com/# how to take sildenafil 20 mg

# bimatoprost generic best price 2021/12/12 23:15 Travislyday
http://stromectols.online/ stromectol drug

# careprost bimatoprost for sale 2021/12/13 18:57 Travislyday
http://baricitinibrx.com/ baricitinib price

# best place to buy careprost 2021/12/16 3:29 Travislyday
https://stromectols.com/ ivermectin 1 topical cream

# stromectol covid 19 2021/12/17 20:07 Eliastib
qixlxx https://stromectolr.com stromectol nz

# HBgltRaENnFyFnHDe 2022/04/19 13:48 johnansaz
http://imrdsoacha.gov.co/silvitra-120mg-qrms

# cheap pet meds without vet prescription: https://medrxfast.com/ 2022/08/07 8:49 MedsRxFast
cheap pet meds without vet prescription: https://medrxfast.com/

# otc metformin https://glucophage.top/
metformin costs canada 2022/08/23 15:35 Niujsdkj
otc metformin https://glucophage.top/
metformin costs canada

# ed pills cheap https://ed-pills.xyz/
best treatment for ed 2022/09/17 2:57 EdPills
ed pills cheap https://ed-pills.xyz/
best treatment for ed

# ed medications https://cheapestedpills.com/
online ed pills 2022/12/10 22:15 CheapPills
ed medications https://cheapestedpills.com/
online ed pills

# What side effects can this medication cause? Read information now.
https://edonlinefast.com
What side effects can this medication cause? Comprehensive side effect and adverse reaction information. 2023/02/17 2:43 EdPills
What side effects can this medication cause? Read information now.
https://edonlinefast.com
What side effects can this medication cause? Comprehensive side effect and adverse reaction information.

# Prescription Drug Information, Interactions & Side. Everything what you want to know about pills.
https://edonlinefast.com
What side effects can this medication cause? drug information and news for professionals and consumers. 2023/02/17 11:00 EdOnline
Prescription Drug Information, Interactions & Side. Everything what you want to know about pills.
https://edonlinefast.com
What side effects can this medication cause? drug information and news for professionals and consumers.

# prednisone 5 mg - https://prednisonesale.pro/# 2023/04/22 10:33 Prednisone
prednisone 5 mg - https://prednisonesale.pro/#

# buy cytotec over the counter - https://cytotecsale.pro/# 2023/04/29 4:36 Cytotec
buy cytotec over the counter - https://cytotecsale.pro/#

# corticosteroids over the counter https://overthecounter.pro/# 2023/05/08 22:40 OtcJikoliuj
corticosteroids over the counter https://overthecounter.pro/#

# versandapotheke deutschland 2023/09/26 12:53 Williamreomo
http://onlineapotheke.tech/# online apotheke gГ?nstig
versandapotheke deutschland

# gГјnstige online apotheke 2023/09/26 14:47 Williamreomo
http://onlineapotheke.tech/# gГ?nstige online apotheke
internet apotheke

# п»їonline apotheke 2023/09/26 23:06 Williamreomo
http://onlineapotheke.tech/# versandapotheke
п»?online apotheke

# п»їonline apotheke 2023/09/27 0:56 Williamreomo
https://onlineapotheke.tech/# online apotheke preisvergleich
gГ?nstige online apotheke

# п»їonline apotheke 2023/09/27 2:30 Williamreomo
https://onlineapotheke.tech/# versandapotheke versandkostenfrei
online apotheke deutschland

# online apotheke gГјnstig 2023/09/27 4:42 Williamreomo
http://onlineapotheke.tech/# online apotheke deutschland
versandapotheke

# п»їonline apotheke 2023/09/27 8:05 Williamreomo
https://onlineapotheke.tech/# versandapotheke
online apotheke preisvergleich

# farmaci senza ricetta elenco 2023/09/27 17:15 Rickeyrof
acheter sildenafil 100mg sans ordonnance

# acquisto farmaci con ricetta 2023/09/27 19:38 Rickeyrof
acheter sildenafil 100mg sans ordonnance

# farmacie online sicure 2023/09/27 21:49 Rickeyrof
acheter sildenafil 100mg sans ordonnance

# farmacia online senza ricetta 2023/09/27 22:54 Rickeyrof
acheter sildenafil 100mg sans ordonnance

# pharm store canada 2023/10/16 16:56 Dannyhealm
They offer unparalleled advice on international healthcare. https://mexicanpharmonline.com/# mexican pharmaceuticals online

# best rated canadian pharmacies 2023/10/17 10:16 Dannyhealm
They handle all the insurance paperwork seamlessly. http://mexicanpharmonline.shop/# mexico drug stores pharmacies

# canadian pharmacies that deliver to the us 2023/10/18 4:57 Dannyhealm
Their international patient care is impeccable. https://mexicanpharmonline.com/# mexico drug stores pharmacies

# canada prescription online 2023/10/18 18:57 Dannyhealm
They set the tone for international pharmaceutical excellence. https://mexicanpharmonline.shop/# mexico drug stores pharmacies

# antiplatelet drug https://plavix.guru/ Cost of Plavix on Medicare 2023/10/24 0:39 Plavixxx
antiplatelet drug https://plavix.guru/ Cost of Plavix on Medicare

# mexican border pharmacies shipping to usa 2023/11/18 9:32 DavidFap
http://withoutprescription.guru/# non prescription erection pills

# mexican rx online 2023/11/20 7:31 DavidFap
http://withoutprescription.guru/# best non prescription ed pills

# Paxlovid buy online 2023/12/01 7:05 Mathewhip
paxlovid price https://paxlovid.club/# paxlovid generic

# canadian prescription drug store 2023/12/03 7:43 MichaelBum
http://clomid.club/# where buy clomid pills

# farmacia online 24 horas 2023/12/07 15:43 RonnieCag
http://vardenafilo.icu/# farmacia 24h

# farmacias baratas online envío gratis 2023/12/08 4:19 RonnieCag
https://farmacia.best/# farmacia online envío gratis

# ï»¿farmacia online 2023/12/08 10:03 RonnieCag
https://sildenafilo.store/# sildenafilo 100mg precio farmacia

# farmacias online seguras 2023/12/08 12:54 RonnieCag
https://vardenafilo.icu/# farmacias online baratas

# farmacia online envío gratis 2023/12/08 15:44 RonnieCag
https://vardenafilo.icu/# farmacia online madrid

# farmacias baratas online envío gratis 2023/12/08 18:46 RonnieCag
https://tadalafilo.pro/# farmacia 24h

# farmacias baratas online envío gratis 2023/12/10 2:27 RonnieCag
https://tadalafilo.pro/# farmacias baratas online envío gratis

# farmacia barata 2023/12/10 23:07 RonnieCag
http://vardenafilo.icu/# farmacias baratas online envío gratis

# farmacias online seguras en españa 2023/12/11 17:45 RonnieCag
https://farmacia.best/# farmacias online seguras en españa

# farmacia online barata 2023/12/11 21:16 RonnieCag
http://tadalafilo.pro/# farmacias baratas online envío gratis

# ï»¿farmacia online 2023/12/12 7:52 RonnieCag
https://vardenafilo.icu/# farmacias online seguras en españa

# farmacias baratas online envío gratis 2023/12/12 10:39 RonnieCag
https://farmacia.best/# farmacia online barata

# farmacia online envío gratis 2023/12/12 13:31 RonnieCag
https://farmacia.best/# farmacias online seguras

# farmacia envíos internacionales 2023/12/12 23:35 RonnieCag
http://farmacia.best/# farmacia online

# farmacias online seguras en españa 2023/12/13 6:55 RonnieCag
http://tadalafilo.pro/# farmacia online 24 horas

# Pharmacie en ligne livraison rapide 2023/12/13 19:36 Larryedump
http://pharmacieenligne.guru/# pharmacie en ligne

# best ed pills https://edpills.tech/# natural ed remedies 2023/12/23 8:08 EdPills
best ed pills https://edpills.tech/# natural ed remedies

# generic clomid tablets 2023/12/30 0:04 RaymondGrido
http://clomid.site/# order generic clomid online

# amoxil generic 2024/01/12 8:50 Robertdub
http://prednisone.auction/# how can i get prednisone

# farmacie on line spedizione gratuita 2024/01/16 2:19 Wendellglaks
https://farmaciaitalia.store/# farmacie online autorizzate elenco

# can i purchase clomid without insurance 2024/01/21 1:06 LarryVoP
Their digital prescription service is innovative and efficient http://prednisonepharm.store/# 50 mg prednisone tablet

# cheap clomid price 2024/01/21 6:26 LarryVoP
Read information now http://prednisonepharm.store/# prednisone 54899

# can i order generic clomid tablets 2024/01/21 20:56 AnthonyAnoth
https://clomidpharm.shop/# where to buy clomid

# tamoxifen benefits 2024/01/22 1:48 Normantug
https://clomidpharm.shop/# can i order cheap clomid tablets

# can you get generic clomid without insurance 2024/01/22 3:37 LarryVoP
Their worldwide delivery system is impeccable http://prednisonepharm.store/# prednisone 25mg from canada

# get generic clomid without rx 2024/01/22 9:29 LarryVoP
Their multilingual support team is a blessing http://clomidpharm.shop/# can you get clomid online

# Pharmacies en ligne certifiées 2024/01/27 22:26 JerryNef
https://pharmadoc.pro/# Pharmacie en ligne sans ordonnance

# ï»¿pharmacie en ligne 2024/01/28 18:24 JerryNef
http://pharmadoc.pro/# pharmacie en ligne

# ï»¿pharmacie en ligne 2024/01/29 1:04 JerryNef
http://pharmadoc.pro/# pharmacie ouverte 24/24

# top 10 pharmacies in india 2024/02/02 9:45 Jerrysoicy
https://mexicanpharm.shop/# mexico drug stores pharmacies mexicanpharm.shop

# marriage not dating 2024/03/05 12:51 RodrigoGrany
https://lanarhoades.fun/# lana rhoades izle

# aviator oficial pin up https://pinupcassino.pro/ pin up
2024/03/12 2:45 Cassino
aviator oficial pin up https://pinupcassino.pro/ pin up


# gates of olympus oyna &#252;cretsiz - https://gatesofolympus.auction/ gates of olympus demo oyna 2024/03/27 16:35 Olympic
gates of olympus oyna &#252;cretsiz - https://gatesofolympus.auction/ gates of olympus demo oyna

# gate of olympus hile 2024/03/28 11:26 KeithNaf
https://aviatoroyna.bid/# aviator sinyal hilesi ucretsiz

# doxycycline hyc 100mg 2024/04/12 3:43 Archiewef
http://misoprostol.top/# buy cytotec

# vibramycin 100 mg 2024/04/13 19:40 Archiewef
http://doxycyclinest.pro/# buy cheap doxycycline

# Misoprostol 200 mg buy online https://cytotec.club/ buy cytotec pills online cheap 2024/04/28 2:02 Cytotec
Misoprostol 200 mg buy online https://cytotec.club/ buy cytotec pills online cheap

Post Feedback

タイトル
名前
Url:
コメント