list.Find(Predicate<T> match)

作者:追风剑情 发布于:2017-10-16 20:17 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace PredicateTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. List<int> list = new List<int>();
  11. list.Add(1);
  12. list.Add(2);
  13. list.Add(3);
  14. list.Add(2);
  15. list.TrimExcess();//将容量设置为实际元素数目
  16.  
  17. list.Find(delegate(int result)
  18. {
  19. if(result == 2)
  20. {
  21. Console.WriteLine("Find: 2");
  22. return true;
  23. }
  24. return false;
  25. });
  26.  
  27. list.FindAll(delegate(int result)
  28. {
  29. if (result == 2)
  30. {
  31. Console.WriteLine("FindAll: 2");
  32. return true;
  33. }
  34. return false;
  35. });
  36.  
  37. Console.ReadLine();
  38. }
  39. }
  40. }


运行测试

1111.png


  1. namespace System
  2. {
  3. // 摘要:
  4. // 表示定义一组条件并确定指定对象是否符合这些条件的方法。
  5. //
  6. // 参数:
  7. // obj:
  8. // 要按照由此委托表示的方法中定义的条件进行比较的对象。
  9. //
  10. // 类型参数:
  11. // T:
  12. // 要比较的对象的类型。
  13. //
  14. // 返回结果:
  15. // 如果 obj 符合由此委托表示的方法中定义的条件,则为 true;否则为 false。
  16. public delegate bool Predicate<in T>(T obj);
  17. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号