选择最大年龄 C#
我创建了一个 list
,其中包含具有以下属性的对象集合:X
、Y
、Z
>
我想找出集合中哪个对象具有最大的 Z
我尝试使用 Max()
函数,但我不明白它是如何使用的...
I created a list<T>
that contains a collection of objects that have this properties: X
, Y
, Z
I want to find out which object in the collection has the greatest Z
I tried to use the Max()
function but I don't understand how it's used...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Max 用于查找属性的最大值。一旦获得最大值,您就可以使用Where 子句选择值匹配的对象。
Max is used to find the maximum value of a property. Once you have the maximum value you can select those objects whose value matches using the Where clause.
要获取具有最大 Z 值的对象,请按 Z 值降序排序并获取第一项:
编辑:
将其更改为使用 IEnumerable.OrderByDescending 方法而不是 List.Sort。
编辑2:
如果您想要性能,这比最快的 LINQ 解决方案快大约四倍:
To get the object with the greatest Z value you sort on the Z value in descending order and get the first item:
Edit:
Changed it to use the IEnumerable.OrderByDescending method instead of List.Sort.
Edit 2:
If you want performance, this is about four times faster than the fastest LINQ solution:
使用的参数是 lambda 表达式。该表达式指示使用哪个属性(在本例中为 Z)来获取最大值。这将获得最大年龄。如果您想要具有最大年龄的对象,您可以按年龄排序并获得第一个结果:
如果您这样做,请注意,如果两个或多个项目都具有最大年龄,则仅选择其中一个。
The parameter used is a lambda expression. This expression indicates which property to use(in this case, Z) to get the max value. This will get the maximum age. If you want the object which has the greatest age, you could sort by age and get the first result:
If you do it this way, note that if two or more items all have the maximum age, only one of them is selected.
如果可以按照以下方式在您的类上实现
IComparable
或IComparable
:您只需通过调用即可获取最大值(这将需要
使用 System. Linq
):这只会对您的值列表执行一次传递。
If can implement either
IComparable<T>
orIComparable
on your class along these lines:You can get the maximum value simply by calling (this will require
using System.Linq
):This will only perform a single pass over your list of values.
如果具有可比性,这在很大程度上取决于 X 的类型:
It will largely depend on the type of X, if it is comparable: