对一个我不知道它是什么类型的集合进行排序?

发布于 2024-09-11 07:02:34 字数 74 浏览 2 评论 0原文

当我不知道运行时将传递给该集合的对象类型并且避免反射时,.NET 中是否有一种方法可以对集合进行排序。

有什么想法吗?

Is there a way in .NET that I can sort my collection when I do not know what types of objects at run time I will pass to this collection and also by avoiding Reflection.

any thoughts?

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

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

发布评论

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

评论(2

清风不识月 2024-09-18 07:02:34

您确实需要某种比较元素的方法。通常的方法是要求 IComparable:

class MyCollection<T> where T : IComparable<T>
{
}

或使用 IComparer,无论是用于 Sorting 方法还是构造函数:

class MyCollection<T> // where T : IComparable<T>
{
    void Sort(IComparer<T> comparer) 
    {
        if  (comparer.Compare(a, b) > 0) { ... }
    }
}

You do need some way of comparing elements. The usual way is to demand IComparable:

class MyCollection<T> where T : IComparable<T>
{
}

or use an IComparer, either for the Sorting method or the constructor:

class MyCollection<T> // where T : IComparable<T>
{
    void Sort(IComparer<T> comparer) 
    {
        if  (comparer.Compare(a, b) > 0) { ... }
    }
}
向地狱狂奔 2024-09-18 07:02:34

为什么不能使用 ArrayList 集合?

ArrayList list = new ArrayList();
list.Add("R");
list.Add("B");
list.Add("G");
list.Sort();
//produces "B","G","R"

list.Clear();
list.Add(100);
list.Add(10);
list.Add(9);
list.Sort();
//produces 9,10,100

Why can't you use an ArrayList collection?

ArrayList list = new ArrayList();
list.Add("R");
list.Add("B");
list.Add("G");
list.Sort();
//produces "B","G","R"

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