如何根据类的数字属性对类的对象数组进行排序

发布于 2024-12-14 20:44:57 字数 137 浏览 0 评论 0原文

我将一个类的对象存储在同一类的对象数组中。

MyClass[] objectsOfMyClass = new MyClass[9];

现在我想根据对象的数字属性对数组中存储的对象进行降序排序。

I store objects of a class in an object array of the same class.

MyClass[] objectsOfMyClass = new MyClass[9];

Now I want to sort in descending order the objects stored in the array according to a numeric property of the objects.

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

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

发布评论

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

评论(3

情感失落者 2024-12-21 20:44:57
objectsOfMyClass.OrderByDescending(obj => obj.NumericProperty)

供您参考,这是使用 Linq to 对象

objectsOfMyClass.OrderByDescending(obj => obj.NumericProperty)

For your information, this is using Linq to objects

寻梦旅人 2024-12-21 20:44:57

您需要OrderByDescending。它不会对数组进行排序,但会返回排序正确的 IEnumerable。

var orderedArray = objectsOfMyClass.OrderByDescending(m => m.MyProperty).ToArray();

ToArray 可能不是必需的,具体取决于您对结果执行的操作。

You need OrderByDescending. It will not sort the array but return an IEnumerable that's ordered correctly.

var orderedArray = objectsOfMyClass.OrderByDescending(m => m.MyProperty).ToArray();

The ToArray might not be necessary depending on what you're doing with the result.

萝莉病 2024-12-21 20:44:57

您可以使用 Array.Sort() 方法重载,它接受 Comparison

Array.Sort(objectsOfMyClass, (o1, o2) => o2.NumericProperty.CompareTo(o1.NumericProperty));

You can use Array.Sort() method overload, which accepts Comparison<T>:

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