在C#中,可以使用LINQ(Language Integrated Query)对集合进行映射操作。LINQ是一种强大的查询语言,它允许你以声明式的方式查询和操作数据。以下是一些常见的映射操作:
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
// 使用Select操作将每个整数转换为它的平方
List<int> squares = numbers.Select(x => x * x).ToList();
Console.WriteLine("Squares: " + string.Join(", ", squares));
}
}
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
// 使用Where操作筛选出偶数
List<int> evenNumbers = numbers.Where(x => x % 2 == 0).ToList();
Console.WriteLine("Even numbers: " + string.Join(", ", evenNumbers));
}
}
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
// 使用Reduce操作计算所有整数的乘积
int product = numbers.reduce((x, y) => x * y);
Console.WriteLine("Product: " + product);
}
}
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 5, 3, 1, 4, 2 };
// 使用OrderBy操作按升序对整数进行排序
List<int> sortedNumbers = numbers.OrderBy(x => x).ToList();
Console.WriteLine("Sorted numbers: " + string.Join(", ", sortedNumbers));
}
}
这些只是LINQ提供的一些基本映射操作。LINQ还支持许多其他操作,如分组(GroupBy)、连接(Join)和分区(Partition)等。要使用LINQ,你需要引入System.Linq
命名空间。