gpt4 book ai didi

c# - C# 集合是否始终强制执行顺序?

转载 作者:可可西里 更新时间:2023-11-01 08:42:09 24 4
gpt4 key购买 nike

即如果我想从数组中选择,结果是 IEnumerable<object>对象一定是有序的?

public class Student { public string FullName, ... }
public class School { public string Name, public Student[] Students, ... }

public void StudentListWork(School thisSchool)
{
IEnumerable<string> StudentNames = thisSchool.Students.Select(student => student.FullName);

// IS StudentNames GUARANTEED TO BE IN THE SAME ORDER AS thisSchool.Students?
}

谢谢!

最佳答案

是的,在这种情况下:

  • 数组以自然顺序返回项目
  • Enumerable.Select 按原始序列的顺序返回项目(当然是在投影之后)

但是,有些集合保持顺序。特别是:

  • 集合,例如 HashSet<T>Dictionary<TKey, TValue>不保证返回值的顺序
  • 集合,例如 SortedSet<T>SortedDictionary<TKey, TValue>根据放置在其中的项目应用有保证的排序

关于c# - C# 集合是否始终强制执行顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7060210/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com