在 C# 中对对象的 ArrayList 进行排序

发布于 2024-12-29 23:33:27 字数 476 浏览 4 评论 0原文

如何对 ArrayList 对象进行排序?我在对 ArrayList 进行排序时实现了 IComparable 接口,但没有得到所需的结果。

我的代码示例:

public class Sort : IComparable
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public int CompareTo(object obj)
    {
        Sort objCompare = (Sort)obj;
        return (this.Count.CompareTo(objCompare.Count));
    }
}

这里我想根据 Count 对 ArrayList 进行排序。

How can I sort an ArrayList of objects? I have implemented the IComparable interface while sorting the ArrayList, but I am not getting the required result.

My code sample:

public class Sort : IComparable
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public int CompareTo(object obj)
    {
        Sort objCompare = (Sort)obj;
        return (this.Count.CompareTo(objCompare.Count));
    }
}

Here I want to sort the ArrayList based on Count.

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

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

发布评论

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

评论(3

梦里南柯 2025-01-05 23:33:27

试试这个:

public class Sort : IComparable<Sort>
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public virtual int CompareTo(Sort obj)
    {
        return (Count.CompareTo(obj.Count));
    }
}

由于 Count 是字符串,它可能不会按照您期望的方式排序......

try this:

public class Sort : IComparable<Sort>
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public virtual int CompareTo(Sort obj)
    {
        return (Count.CompareTo(obj.Count));
    }
}

as Count is string, it may not sort the way you expect....

ι不睡觉的鱼゛ 2025-01-05 23:33:27

根据 MSDN 文档

要执行稳定的排序,您必须实现自定义<代码>IComparer
与此方法的其他重载一起使用的接口。

According to the MSDN documentation:

To perform a stable sort, you must implement a custom IComparer
interface to use with the other overloads of this method.

笑,眼淚并存 2025-01-05 23:33:27

或者您可以只使用 LINQ 构造来获取列表的排序版本,如下所示:

var results = myArrayList.OrderBy(x => x.Count).ToList();

您是否有理由不使用 LINQ(尚未)?

Or you can just use a LINQ construct to get a sorted version of your list, like so:

var results = myArrayList.OrderBy(x => x.Count).ToList();

Is there a reason you are not using LINQ (yet)?

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