迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

如何在 C# 中按对象中的属性对列表进行排序

作者:迹忆客 最近更新:2024/01/16 浏览次数:

本文将用 C# 代码介绍用对象中的属性对列表进行排序的不同方法。

  • 使用 OrderBy 方法
  • 使用 delegate

在 C# 中使用 OrderBy 方法通过对象中的属性对列表进行排序

我们将使用内置函数 OrderBy,通过对象中的一个属性对列表进行排序。这是 LINQ 的方法。这个方法创建一个新的列表,按照给定的属性排序。使用该方法按属性对一个列表进行排序的正确语法如下。

ListName.Orderby(varName => varName.property);

内置函数 OrderBy 有两个参数。它的详细参数如下。

参数   说明
varName 强制 它是给定列表的变量名
property 强制 这就是我们将用来给列表排序的属性

下面的程序显示了我们如何使用这个函数通过对象中的属性对列表进行排序。

using System;
using System.Linq;
using System.Collections.Generic;

public class Flowers {
  public string name;
  public int priority;

  public Flowers(string name, int priority) {
    this.name = name;
    this.priority = priority;
  }

  public override string ToString() {
    return "[" + name + "," + priority + "]";
  }
}

public class Example {
  public static void Main() {
    Flowers hibiscus = new Flowers("Hibiscus", 3);
    Flowers rose = new Flowers("Rose", 1);
    Flowers lili = new Flowers("Lili", 4);

    List<Flowers> mylist = new List<Flowers>() { hibiscus, rose, lili };

    List<Flowers> sorted = mylist.OrderBy(x => x.priority).ToList();
    Console.WriteLine(String.Join(Environment.NewLine, sorted));
  }
}

输出:

[Rose,1]
[Hibiscus,3]
[Lili,4]

在 C# 中使用 delegate 通过对象中的一个属性对列表进行排序

我们也可以使用自定义 delegate 来对对象中的某个属性对列表进行排序。使用 delegate 的正确语法如下。

[access modifier]
delegate[return type][delegate name]([parameters])

下面的程序显示了我们如何使用委托来根据对象中的属性对列表进行排序。

using System;
using System.Linq;
using System.Collections.Generic;

public class Flowers {
  public string name;
  public int priority;

  public Flowers(string name, int priority) {
    this.name = name;
    this.priority = priority;
  }

  public override string ToString() {
    return "[" + name + "," + priority + "]";
  }
}

public class Example {
  public static void Main() {
    Flowers hibiscus = new Flowers("Hibiscus", 3);
    Flowers rose = new Flowers("Rose", 1);
    Flowers lili = new Flowers("Lili", 4);

    List<Flowers> mylist = new List<Flowers>() { hibiscus, rose, lili };

    mylist.Sort(delegate(Flowers x, Flowers y) { return x.priority.CompareTo(y.priority); });

    Console.WriteLine(String.Join(Environment.NewLine, mylist));
  }
}

输出:

[Rose,1]
[Hibiscus,3]
[Lili,4]

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

C# 中的方法组

发布时间:2024/01/16 浏览次数:170 分类:编程语言

本文向我们介绍了 C# 中的方法组。C# 中的方法组 我们有时会遇到一个函数可能有多个实现的情况。

C# 将多个参数传递给 get 方法

发布时间:2024/01/16 浏览次数:175 分类:编程语言

本文的方法指南展示了在 C# 中将多个参数传递给 get 方法的不同方法。它介绍了控制器动作,属性路由和 [FromQuery]之类的方法。

解压缩 C# 中的 Zip 文件

发布时间:2024/01/16 浏览次数:71 分类:编程语言

ZipFile.ExtractToDirectory()函数可用于解压缩 C# 中的压缩文件。使用 C# 中的 ZipFile.ExtractToDirectory() 函数解压缩文件

从 C# 中的字符串中删除字符

发布时间:2024/01/16 浏览次数:74 分类:编程语言

有 4 种主要方法可用于从 C# 中的字符串,string.Replace()函数,string.Join()和 string.Split()函数,Regex.Replace()函数以及 Linq 方法。

在 C# 中转义双引号

发布时间:2024/01/16 浏览次数:144 分类:编程语言

有两种主要方法可用于在 C# 中转义双引号。在 C# 中使用""转义符转义双引号

在 C# 中重复字符串 X 次

发布时间:2024/01/16 浏览次数:173 分类:编程语言

在 C# 中,可以使用三种主要方法将字符串重复 x 次:字符串类构造函数,StringBuilder 类和 LINQ 方法。用 C# 中的 string 类构造函数重复执行 X 次字符串

在 C# 中重复字符串

发布时间:2024/01/16 浏览次数:140 分类:编程语言

可使用三种主要方法在 C# 中重复字符串,String 构造函数,LINQ 中的 Enumerable.Repeat()函数以及 StringBuilder 类。

在 C# 中向数组中添加字符串

发布时间:2024/01/16 浏览次数:168 分类:编程语言

没有内置方法可以将新元素动态添加到 C# 中完全填充的数组中。使用 C# 中的 List.Add() 方法将字符串添加到数组

在 C# 中截断字符串

发布时间:2024/01/16 浏览次数:66 分类:编程语言

我们可以使用 C# 中的 String.Substring()方法创建一个字符串的截断副本。在 C# 中使用 String.Substring() 方法截断字符串

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便