4

linq の仕組みを理解しようとしています。テスト アプリを作成しましたが、期待どおりに動作しません。次のコードから、アイテム「test1」と「test4」がグループ化されていることを期待していますが、それが得られません。代わりに、4 つの別々のグループを取得しています。アイテムの 1 つがグループ化されていることを意味します。誰かが私が間違っていることを説明できますか? ありがとう。

public class linqtest
{   public int x1;
    public int x2;
    public string x3;

    public linqtest(int a, int b, string c)
    {
        x1 = a;
        x2 = b;
        x3 = c;

    }

    public bool Equals(linqtest other)
    {

        if (ReferenceEquals(null, other)) return false;
        if (ReferenceEquals(this, other)) return true;

        return x1 == other.x1 &&
                x2 == other.x2;

    }

    public override bool Equals(object obj)
    {
        if (ReferenceEquals(null, obj)) return false;
        if (ReferenceEquals(this, obj)) return true;
        if (obj.GetType() != typeof(linqtest)) return false;
        return Equals((linqtest)obj);
    }
}
linqtest tc14 = new linqtest(1, 4, "test1");
inqtest tc15 = new linqtest(3, 5, "test2");
linqtest tc16 = new linqtest(3, 6, "test3");
linqtest tc16a = new linqtest(1, 4, "test4");

List<linqtest> tclistitems = new List<linqtest>();
tclistitems.Add(tc14);
tclistitems.Add(tc15);
tclistitems.Add(tc16);
tclistitems.Add(tc16a);

IEnumerable<IGrouping<linqtest, linqtest>> tcgroup = tclistitems.GroupBy(c => c);

tcgroup に 4 つのグループが含まれているのはなぜですか? 私は3つのグループを期待していました。

4

2 に答える 2

2

メソッドをオーバーライドする必要はありません。匿名クラスは次Equalのようなプロパティに基づいて比較されるため、匿名クラスを利用するだけですstruct

tcgroup = tclistitems.GroupBy(c => new { c.x1, c.x2 });
于 2013-04-25T15:17:11.823 に答える