将项目添加到列表的其他方式<>
在我的其他问题中,您可以看到我的代码arr 结构和 PriorityQueue 集合。我通常会像这样将项目添加到这个集合中:
arr.PriorityQueue.Add(new element((value(item, endPoint) + value(startPoint, item)),item));
我很好奇还有其他方法可以做到这一点(将元素(即结构)对象添加到列表中)?例如以 lambda 方式?我只是渴望知识:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要将新对象添加到列表中,您需要实例化它。
你这样做的方式是正确的,没有 lambda 语法或其他语法糖手术。
To add a new object to a list, you need to instantiate it.
The way you are doing it is correct, there is not lambda syntax or other syntactic sugar for this operation.
另一种方法是使用 List.AddRange。它接受
IEnumerable
,因此您可以向它传递任何T
集合,包括数组或 Linq 表达式的结果:Another way is to use List.AddRange. It accepts an
IEnumerable<T>
, so you can pass it any collection ofT
, including arrays or the results of Linq expressions: