如何使这个更通用

发布于 2024-11-18 09:26:03 字数 591 浏览 0 评论 0原文

[代码]

private static IOrderedEnumerable<Film> OrderBy(this IEnumerable<Film> source, Func<Film, object> order, bool desc)
{
    if (desc) { return source.OrderByDescending(order); }
    return source.OrderBy(order);
}

[情况]

当然,linq 已经实现了 order by。我只是想更通用化它。主要只是为了学习东西,除了我可以正常排序或按相同属性降序排序之外,它并没有真正添加其他东西。

[问题]

但是我希望使其更通用。目前只需要 IEnumerable并返回 IOrderedEnumerable(其中 T 当前是一部电影。自定义模型)。 是否有任何通用类型的列表、可枚举或涵盖所有列表、IEnumerable IOrderedEnumerable 等的东西?

[code]

private static IOrderedEnumerable<Film> OrderBy(this IEnumerable<Film> source, Func<Film, object> order, bool desc)
{
    if (desc) { return source.OrderByDescending(order); }
    return source.OrderBy(order);
}

[Situation]

Ofcourse, linq already implements a order by. I'm only trying to generize it more. Mostly just to learn things, it doesn't really add things other then that I can order by normally or order by descending with the same property.

[Question]

However I wish to make it more generic. Currently it only takes IEnumerable<T> and return IOrderedEnumerable<T> (where T currently is a movie. Custom model).
Is there any general type of list, enumerable or something that covers all List, IEnumerable IOrderedEnumerable etcetc?

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

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

发布评论

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

评论(1

霊感 2024-11-25 09:26:03

是的,有。它是 IEnumerable

List 等类实现 IEnumerable 接口,因此采用 IEnumerable 的方法可以与大多数收藏。


您忘记为该方法指定通用参数:OrderBy

原始的 OrderBy 方法还有一个键类型的通用参数。您可能还想使用它来确保比较正常工作,并且它不会进行大量不必要的装箱和拆箱:

private static IOrderedEnumerable<Film> OrderBy<Film, Key>(this IEnumerable<Film> source, Func<Film, Key> order, bool desc) {
  if (desc) { return source.OrderByDescending(order); }
  return source.OrderBy(order);
}

Yes, there is. It's IEnumerable<T>.

Classes like List<T> implement the IEnumerable<T> interface, so a method that takes IEnumerable<T> can be used with most any collection.


You forgot to specify the generic parameter to the method: OrderBy<Film>.

The original OrderBy method also have a generic parameter for the type of the key. You might also want to use that, to make sure that the comparisons work properly, and that it doesn't do a lot of unnecessary boxing and unboxing:

private static IOrderedEnumerable<Film> OrderBy<Film, Key>(this IEnumerable<Film> source, Func<Film, Key> order, bool desc) {
  if (desc) { return source.OrderByDescending(order); }
  return source.OrderBy(order);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文