Effective C# 学习笔记(八)多用query语法,少用循环
對于C#的query查詢語法,其可讀性和可維護性要比原來的loop操作好得多
例子:
同樣是創建個二維元組,并對其元組按到原點的距離進行倒序排序,用query 語法的表達形式要比原始的循環做法來的更易讀、更易于維護,并且省去了用于存儲中間過程的額外臨時變量(例子中原始方法用的 storage對象)
?
//原始的循環方法
private static IEnumerable<Tuple<int, int>> ProduceIndices3()
{
var storage = new List<Tuple<int, int>>();
for (int x = 0; x < 100; x++)
for (int y = 0; y < 100; y++)
if (x + y < 100)
storage.Add(Tuple.Create(x, y));
storage.Sort((point1, point2) =>
(point2.Item1*point2.Item1 +
point2.Item2 * point2.Item2).CompareTo(
point1.Item1 * point1.Item1 +
point1.Item2 * point1.Item2));
return storage;
}
?
//query syntax
private static IEnumerable<Tuple<int, int>> QueryIndices3()
{
return from x in Enumerable.Range(0, 100)
from y in Enumerable.Range(0, 100)
where x + y < 100
orderby (x*x + y*y) descending
select Tuple.Create(x, y);
}
?
?
//using the method call syntax
private static IEnumerable<Tuple<int, int>> MethodIndices3()
{
return Enumerable.Range(0, 100).
SelectMany(x => Enumerable.Range(0,100),
(x,y) => Tuple.Create(x,y)).
Where(pt => pt.Item1 + pt.Item2 < 100).
OrderByDescending(pt =>
pt.Item1* pt.Item1 + pt.Item2 * pt.Item2);
}
轉載于:https://www.cnblogs.com/haokaibo/archive/2011/07/03/2096968.html
總結
以上是生活随笔為你收集整理的Effective C# 学习笔记(八)多用query语法,少用循环的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何改进泰山风景区的管理体制?
- 下一篇: 如何完善泰山风景区的服务设施?