测试
新建一个Person类
public class Person { public Person(string name,int id) { Name = name; Id = id; } public string Name { get; set; } public int Id { get; set; } }
初始化List
static void Main(string[] args) { List<Person> persons = new List<Person>(); //初始化persons数据 for (int i = 0; i < 1000000; i++) { Person person = new Person("My" + i,i); persons.Add(person); } Person xiaoming=new Person("My999999", 999999); //下面通过三种方法判断persons中是否包含xiaoming Stopwatch watch = new Stopwatch(); watch.Start(); bool a = persons.Contains(xiaoming); watch.Stop(); Stopwatch watch1 = new Stopwatch(); watch1.Start(); bool b = persons.Exists(x=>x.Id==xiaoming.Id); watch1.Stop(); Stopwatch watch2 = new Stopwatch(); watch2.Start(); bool c = persons.Where(x=>x.Id==xiaoming.Id).Any(); watch2.Stop(); Stopwatch watch3 = new Stopwatch(); watch3.Start(); bool d = persons.Any(x => x.Id == xiaoming.Id); watch3.Stop(); Console.WriteLine("Contains耗时:" + watch.Elapsed.TotalMilliseconds); Console.WriteLine("Exists耗时:" + watch1.Elapsed.TotalMilliseconds); Console.WriteLine("Where耗时:" + watch2.Elapsed.TotalMilliseconds); Console.WriteLine("Any耗时:" + watch3.Elapsed.TotalMilliseconds); Console.ReadLine(); }
执行结果如下图所示
结论
通过上图可以看出性能排序为
Contains > Exists > Where > Any
注意:
Contains中不能带查询条件
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)