比较基于字典

时间:2016-05-12 08:02:52

标签: c# object dictionary clone equality

我有两个具有这些定义的对象:

public static Dictionary<string, Container> cont1 = new Dictionary<string, Container>();
public static Dictionary<string, Container> cont2 = new Dictionary<string, Container>();

Container类的架构如下:

public class Container
{
    public string IDx { get; set; }
    public string IDy { get; set; }
    public string Name { get; set; }
    public Dictionary<string, Sub> Subs = new Dictionary<string, Sub>();
}

public class Sub
{
    public string Namex { get; set; }
    public string Namey { get; set; }
    public string Value { get; set; }
    public Dictionary<string, string> Paths { get; set; }
}

我的问题是:我如何深入检查 cont1和cont2的权益?我的意思是在Subs对象中甚至内心深处的每个成员和值的相等性;

在这种情况下c#中是否有任何功能,或者我必须自己编写一个自定义方法来检查基于对象结构的相等性;

第二个问题:如果我可以创建两个不同的产品副本,我可以避免平等问题;我的意思是说我们有一个包含所有成员和值的基础Container对象,然后创建Container的两个单独的副本,即cont1和cont2,它们在cont1中更改值不会更改cont2中的相同值。 / p>

注1 :此克隆方法无效:

cont2 = new Dictionary<string, Container>(cont1);

Note2 :其他答案中提出的大多数方法都是基于一个级别的字典(使用循环或LINQ进行检查)而不是这种情况,当我们有属性和字典对象(具有对象内的自己的属性。

2 个答案:

答案 0 :(得分:2)

字典是一个序列,所以一般来说,你可能正在寻找的是Enumerable<T>.SequenceEquals,它允许传入IEquityComparer<T>

你的序列(字典)是IEnumerable<KeyValuePair<string,Container>>所以你需要一个实现IEquityComparer<IEnumerable<KeyValuePair<string,Container>>>的比较器(多少角度支撑!)。

var equal = cont1.SequenceEquals(cont2, new StringContainerPairEquityComparer());

请注意,元素字典的顺序无法保证,因此要正确使用该方法,您应该在比较序列之前使用OrderBy - 但这会增加此方法的低效率。

对于第二个问题,您要做的是克隆字典。通常,您的Container应该实现ICloneable界面,然后您可以使用该界面创建副本

var cont2 = cont1.ToDictionary(k => k.Key, v => v.Value.Clone());

答案 1 :(得分:1)

是的,你必须自己编写一个自定义方法来检查基于对象结构的相等性。我会提供一个自定义IEqualityComparer<Container>和一个IEqualityComparer<Sub>就像这里(GetHashCode实施基于this):

public class ContainerCheck : IEqualityComparer<Container>
{
    private SubCheck subChecker = new SubCheck();
    public bool Equals(Container x, Container y)
    {
        if (ReferenceEquals(x, y))
            return true;
        if (x == null || y == null)
            return false;
        if (x.IDx != y.IDx || x.IDy != y.IDy || x.Name != y.Name)
            return false;
        // check dictionary
        if (ReferenceEquals(x.Subs, y.Subs))
            return true;
        if (x.Subs == null || y.Subs == null || x.Subs.Count != y.Subs.Count)
            return false;
        foreach (var kv in x.Subs)
            if (!y.Subs.ContainsKey(kv.Key) || subChecker.Equals(y.Subs[kv.Key], kv.Value))
                return false;
        return true;

    }

    public int GetHashCode(Container obj)
    {
        unchecked // Overflow is fine, just wrap
        {
            int hash = 17;
            // Suitable nullity checks etc, of course :)
            hash = hash * 23 + obj.IDx.GetHashCode();
            hash = hash * 23 + obj.IDy.GetHashCode();
            hash = hash * 23 + obj.Name.GetHashCode();
            foreach (var kv in obj.Subs)
            {
                hash = hash * 23 + kv.Key.GetHashCode();
                hash = hash * 23 + subChecker.GetHashCode(kv.Value);
            }

            return hash;
        }
    }
}

public class SubCheck : IEqualityComparer<Sub>
{
    public bool Equals(Sub x, Sub y)
    {
        if (ReferenceEquals(x, y))
            return true;
        if (x == null || y == null)
            return false;
        if (x.Namex != y.Namex || x.Namey != y.Namey || x.Value != y.Value)
            return false;
        // check dictionary
        if (ReferenceEquals(x.Paths, y.Paths))
            return true;
        if (x.Paths == null || y.Paths == null || x.Paths.Count != y.Paths.Count)
            return false;
        foreach(var kv in x.Paths)
            if (!y.Paths.ContainsKey(kv.Key) || y.Paths[kv.Key] != kv.Value)
                return false;
        return true;
    }

    public int GetHashCode(Sub obj)
    {
        unchecked // Overflow is fine, just wrap
        {
            int hash = 17;
            // Suitable nullity checks etc, of course :)
            hash = hash * 23 + obj.Namex.GetHashCode();
            hash = hash * 23 + obj.Namey.GetHashCode();
            hash = hash * 23 + obj.Value.GetHashCode();
            foreach (var kv in obj.Paths)
            {
                hash = hash * 23 + kv.Key.GetHashCode();
                hash = hash*23 + kv.Value.GetHashCode();
            }

            return hash;
        }
    }
} 

这应该深入检查所有属性和词典。然后你可以使用以下循环来比较两个词典:

bool equal = true;
var allKeys = cont1.Keys.Concat(cont2.Keys).ToList();
var containerChecker = new ContainerCheck();

foreach (string key in allKeys)
{
    Container c1;
    Container c2;
    if (!cont1.TryGetValue(key, out c1) || !cont2.TryGetValue(key, out c2))
    {
        equal = false;
    }
    else
    {
        // deep check both containers
        if (!containerChecker.Equals(c1, c2))
            equal = false;
    }
    if(!equal)
        break;  // or collect differences
}