LINQ中Aggregate的用法
类别:编程学习 浏览量:367
时间:2016-2-23 LINQ中Aggregate的用法
LINQ中Aggregate的用法LINQ中的Aggregate可以做一些复杂的聚合运算,例如累计求和,累计求乘积。
Aggregate接受2个参数,一般第一个参数是称为累积数(默认情况下等于第一个值),而第二个代表了下一个值。第一次计算之后,计算的结果会替换掉第一个参数,继续参与下一次计算。
一、Aggregate的源码分析
Aggregate在内部其实也仅仅是“普通做法”一模一样的源代码,Aggregate做的是一层代码封装
二、LINQ中的Aggregate实例
1、使用Aggregate语法做阶乘运算
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var numbers = GetArray(5);
var result = (from n in numbers
select n).Aggregate(
(total, next) =>
{
return total * next;
});
Console.WriteLine("5的阶乘为:{0}",result);//返回120,也就是1*2*3*4*5
}
static IEnumerable<int> GetArray(int max) {
List<int> result = new List<int>(max);
for (int i = 0; i < max; i++)
{
result.Add(i+1);
}
return result;
}
}
}
2、Aggregate用于集合的简单的累加、阶乘
using System;
using System.Linq;
class Program
{
static void Main()
{
int[] array = { 1, 2, 3, 4, 5 };
int result = array.Aggregate((a, b) => b + a);
// 1 + 2 = 3
// 3 + 3 = 6
// 6 + 4 = 10
// 10 + 5 = 15
Console.WriteLine(result);
result = array.Aggregate((a, b) => b * a);
// 1 * 2 = 2
// 2 * 3 = 6
// 6 * 4 = 24
// 24 * 5 = 120
Console.WriteLine(result);
}
}
//输出结果:
//15
//120
3、Aggregate,在字符串中反转单词的排序
string sentence = "the quick brown fox jumps over the lazy dog";
string[] words = sentence.Split(' ');
string reversed = words.Aggregate((workingSentence, next) =>next + " " + workingSentence);
Console.WriteLine(reversed);
//输出结果:
//dog lazy the over jumps fox brown quick the
4、使用 Aggregate 应用累加器函数和结果选择器
下例使用linq的Aggregate方法找出数组中大于"banana", 长度最长的字符串,并把它转换大写。
string[] fruits ={
"apple", "mango", "orange", "passionfruit", "grape"
};
string longestName =
fruits.Aggregate("banana",
(longest, next) =>
next.Length > longest.Length ? next : longest,
fruit => fruit.ToUpper());
Console.WriteLine(
"The fruit with the longest name is {0}.",longestName);
//输出结果:
//The fruit with the longest name is PASSIONFRUIT.
5、使用 Aggregate 应用累加器函数和使用种子值
下例使用linq的Aggregate方法统计一个数组中偶数的个数。
int[] ints = { 4, 8, 8, 3, 9, 0, 7, 8, 2 };
//统计一个数组中偶数的个数,种子值设置为0,找到偶数就加1
int numEven = ints.Aggregate(0, (total, next) =>
next % 2 == 0 ? total + 1 : total);
Console.WriteLine("The number of even integers is: {0}", numEven);
//输出结果:
//The number of even integers is: 6
标签:LINQ
您可能感兴趣
- list使用linq排序
- linq distinct去重
- Linq中select查询
- linq to sql 中Concat、Union、Intersect、Except
- 如何查看linq生成的sql
- linq xml 查询
- linq中let
- linq中延迟执行
- Linq中的TakeWhile和SkipWhile
- linq中group by
- 使用 LINQPad 调试linq以及lambda表达式
- LINQ中Aggregate的用法
- linq 数据类型转换
- linq 排序
- Linq操作Datable
- linq中join用法
- 富士胶片集团将向土耳其东南部地震灾民捐赠5000万日元 | 美通社(富士胶片集团将向土耳其东南部地震灾民捐赠5000万日元)
- 二次创业 的富士胶片,在进博会上首次展示完成转型后的全线医疗产品(二次创业的富士胶片)
- 富士胶片 中国 我们对上海的信心没有任何改变(富士胶片中国)
- 赢麻了 富士公布2021年度财报 营利同比增长240(富士公布2021年度财报)
- 医事文化谈屑 | 古人的名 字 号(医事文化谈屑古人的名)
- ()
热门推荐
- dataframe数据处理教程(对dataframe数据之间求补集的实例详解)
- HTML5 <abbr>标签
- docker配置文件详解(Docker中搭建FastDFS文件系统多图教程)
- dedecms数据库调用(DEDECMS直接获取软件模型本地下载地址或服务器名称)
- laravel判断变量为空(关于laravel 数据库迁移中integer类型是无法指定长度的问题)
- vue渲染数据的过程(Vue前端高效开发之列表渲染指令)
- mysql主从复制配置(Mysql实现主从配置和多主多从配置)
- WebStorm前端开发工具
- yii2对比springboot(Yii框架函数简单用法分析)
- django框架教程第100讲(详解Django+Vue+Docker搭建接口测试平台实战)