对《LINQ能不能用系列(一)数组筛选效率对比》
1个回答
2017-04-19
展开全部
对《LINQ能不能用系列(一)数组筛选效率对比》
Linq(2);
TestLinq(3);
}
public void TestLinq(int time)
{
const int listCount = 10000000; // 数组长度
Random random = new Random(); // 数据随机构建值
// 数组构建
List<int> list1 = new List<int>();
for (int i = 0; i < listCount; i++)
{
list1.Add(random.Next(10000));
}
// 效率测试内容:提取数组中数值大于的100的数组
// LINQ 测试
Stopwatch linq_Stopwatch = new Stopwatch();
linq_Stopwatch.Start();
var linqList = (from num in list1
where num > 100
select num).ToList();
Linq(2);
TestLinq(3);
}
public void TestLinq(int time)
{
const int listCount = 10000000; // 数组长度
Random random = new Random(); // 数据随机构建值
// 数组构建
List<int> list1 = new List<int>();
for (int i = 0; i < listCount; i++)
{
list1.Add(random.Next(10000));
}
// 效率测试内容:提取数组中数值大于的100的数组
// LINQ 测试
Stopwatch linq_Stopwatch = new Stopwatch();
linq_Stopwatch.Start();
var linqList = (from num in list1
where num > 100
select num).ToList();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询