将 Distinct 与自定义对象列表一起使用

发布于 2024-09-04 12:15:24 字数 831 浏览 7 评论 0原文

如何使 Distinct() 方法与自定义对象列表(在本例中为 Href)一起使用,当前对象如下所示:

public class Href : IComparable, IComparer<Href>
{
    public Uri URL { get; set; }
    public UrlType URLType { get; set; }

    public Href(Uri url, UrlType urltype)
    {
        URL = url;
        URLType = urltype;
    }


    #region IComparable Members

    public int CompareTo(object obj)
    {
        if (obj is Href)
        {
            return URL.ToString().CompareTo((obj as Href).URL.ToString());
        }
        else
            throw new ArgumentException("Wrong data type.");
    }

    #endregion

    #region IComparer<Href> Members

    int IComparer<Href>.Compare(Href x, Href y)
    {
        return string.Compare(x.URL.ToString(), y.URL.ToString());
    }

    #endregion
}

How can I make the Distinct() method work with a list of custom object (Href in this case), here is what the current object looks like:

public class Href : IComparable, IComparer<Href>
{
    public Uri URL { get; set; }
    public UrlType URLType { get; set; }

    public Href(Uri url, UrlType urltype)
    {
        URL = url;
        URLType = urltype;
    }


    #region IComparable Members

    public int CompareTo(object obj)
    {
        if (obj is Href)
        {
            return URL.ToString().CompareTo((obj as Href).URL.ToString());
        }
        else
            throw new ArgumentException("Wrong data type.");
    }

    #endregion

    #region IComparer<Href> Members

    int IComparer<Href>.Compare(Href x, Href y)
    {
        return string.Compare(x.URL.ToString(), y.URL.ToString());
    }

    #endregion
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不羁少年 2024-09-11 12:15:24

您需要重写 EqualsGetHashCode

GetHashCode 应为所有被视为相等的实例返回相同的值。

例如:

public override bool Equals(object obj) { 
    Href other = obj as Href;
    return other != null && URL.Equals(other.URL);
} 

public override int GetHashCode() { 
    return URL.GetHashCode();
} 

由于.Net的Uri类重写了GetHashCode,因此您可以简单地返回URL的哈希码。

You need to override Equals and GetHashCode.

GetHashCode should return the same value for all instances that are considered equal.

For example:

public override bool Equals(object obj) { 
    Href other = obj as Href;
    return other != null && URL.Equals(other.URL);
} 

public override int GetHashCode() { 
    return URL.GetHashCode();
} 

Since .Net's Uri class overrides GetHashCode, you can simply return the URL's hashcode.

薄荷→糖丶微凉 2024-09-11 12:15:24

您可以获取 aku 的比较器 的副本(注意 GetHashCode 实现但是),然后写这样的东西

hrefList.Distinct(new Comparer<Href>((h1,h2)=>h1.URL==h2.URL))

You could grab a copy of aku's comparer (beware of the GetHashCode implementation however), and then write something like this

hrefList.Distinct(new Comparer<Href>((h1,h2)=>h1.URL==h2.URL))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文