Lambda表达式

作者:追风剑情 发布于:2020-1-9 13:57 分类:C#

Lambda表达式(C# 编程指南)
System.Linq.Expressions

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Linq.Expressions;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp3
  9. {
  10. class Program
  11. {
  12. delegate int del(int i);
  13. delegate int del1(int x, int y);
  14. delegate int del2();
  15. delegate void del3(string s);
  16.  
  17. private static Action action;
  18.  
  19. private static int k = 9;
  20.  
  21. static void Main(string[] args)
  22. {
  23. /*
  24. Lambda 表达式:
  25. () => SomeMethod(); //使用括号指定0个参数
  26. x => x * x; //1个参数
  27. (x1, x2) => x1 * x2; //多个参数时用括号括起来
  28. (int x1, int x2) => x1 * x2; //编译器无法推断输入类型时,可以显示指定参数类型
  29. */
  30. del myDelegate = x => x * x;
  31. int j = myDelegate(5); //j = 25
  32. Console.WriteLine("j={0}", j);
  33.  
  34. del1 myDelegate1 = (x, y) => x * y;
  35. int n = myDelegate1(4, 5);
  36. Console.WriteLine("n={0}", n);
  37.  
  38. del2 myDelegate2 = () => SomeMethod();
  39. int m = myDelegate2();
  40. Console.WriteLine("m={0}", m);
  41.  
  42. //条件查询
  43. int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
  44. int oddNumbers = numbers.Count(p => p % 2 == 1);
  45. Console.WriteLine("oddNumbers={0}", oddNumbers);
  46.  
  47. /* Lambda 语句 */
  48. del3 myDelegate3 = s => { string s1 = s + " World"; Console.WriteLine(s1); };
  49. myDelegate3("Hello");
  50.  
  51. //异步事件
  52. action += async () =>
  53. {
  54. await ExampleMethodAsync();
  55. };
  56. action();
  57.  
  58. //表达式树 参见 https://www.cnblogs.com/ashleyboy/p/4831064.html
  59.  
  60. //委托res引用返回x+1的方法
  61. Func<int, int> res = x => x + 1;
  62. //表达式树exp引用描述表达式x=>x+1的数据结构
  63. Expression<Func<int, int>> exp = x => x + 1;
  64. //将表达式树描述的lambda表达式编译为可执行代码,并生成表示该lambda表达式的委托
  65. Func<int, int> delf = exp.Compile();
  66. int q = delf(5);
  67. Console.WriteLine("q={0}", q);
  68.  
  69. //通过API创建表达式树
  70. ParameterExpression param = Expression.Parameter(typeof(int), "x");
  71. ConstantExpression value = Expression.Constant(1, typeof(int));
  72. BinaryExpression body = Expression.Add(param, value);
  73. //public delegate TResult Func<in T, out TResult>(T arg);
  74. Expression<Func<int, int>> lambdatree = Expression.Lambda<Func<int, int>>(body, param);
  75. Console.WriteLine("参数param:{0}", param);
  76. Console.WriteLine("描述body:{0}", body);
  77. Console.WriteLine("表达式树:{0}", lambdatree);
  78. Func<int, int> delt = lambdatree.Compile();
  79. int t = delt(8);
  80. Console.WriteLine("t={0}", t);
  81.  
  82. //条件表达式
  83. int num = 100;
  84. Expression conditionExpr = Expression.Condition(
  85. Expression.Constant(num > 10),
  86. Expression.Constant("num is greater than 10"),
  87. Expression.Constant("num is smaller than 10")
  88. );
  89. Console.WriteLine(conditionExpr.ToString());
  90. Console.WriteLine(Expression.Lambda<Func<string>>(conditionExpr).Compile()());
  91.  
  92. Console.Read();
  93. }
  94.  
  95. private static int SomeMethod()
  96. {
  97. return k;
  98. }
  99.  
  100. private static async Task ExampleMethodAsync()
  101. {
  102. await Task.Delay(1000);//.NET 4.5+
  103. Console.WriteLine("ExampleMethodAsync");
  104. }
  105. }
  106. }


运行测试

111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号