• .NET Framework中自带的泛型委托Func


    Func<>是.NET Framework中自带的泛型委托,可以接收一个或多个输入参数,并且有返回值,和Action类似,.NET基类库也提供了多达16个输入参数的Func委托,输出参数只有1个。

    1、Func泛型委托

    .NET Framework为我们提供了多达16个参数的Func委托定义,对于常见的开发场景已经完全够用。

    如下图,

    注意:TResult是返回值的类型。

    示例说明:

    Func<>:委托至少0个参数,至多16个参数,有返回值。

    Func:表示无参,有返回值的委托。

    Func :表示有传入参数int,string类型返回值的委托。

    Func:表示有传入参数int、string,bool类型返回值的委托。

    FuncAction:表示有传入3个int型参数,int类型返回值的委托。

    2、Func泛型委托的使用

    Func泛型委托的使用方法,可以通过下面代码看一下,

    例如,

    1. using System;
    2. using System.Collections.Generic;
    3. using System.Linq;
    4. using System.Text;
    5. using System.Threading.Tasks;
    6. namespace FuncDemo
    7. {
    8. class Program
    9. {
    10. static void Main(string[] args)
    11. {
    12. // 无参数无返回值的委托
    13. Func<string> func1 = new Func<string>(FuncWithNoParaReturn);
    14. Console.WriteLine("返回值={0}",func1());
    15. Console.WriteLine("----------------------------");
    16. // 使用delegate
    17. Func<string> func2 = delegate { Console.WriteLine("使用delegate"); return "error"; };
    18. // 执行
    19. Console.WriteLine("返回值={0}",func2());
    20. Console.WriteLine("----------------------------");
    21. // 使用匿名委托
    22. Func<string> func3 = () => { Console.WriteLine("匿名委托"); return "func"; };
    23. Console.WriteLine("返回值={0}",func3());
    24. Console.WriteLine("----------------------------");
    25. // 有参数无返回值的委托
    26. Func<int,string> func4 = new Func<int,string>(FuncWithPara);
    27. Console.WriteLine("返回值={0}",func4(11));
    28. Console.WriteLine("----------------------------");
    29. // 使用delegate
    30. Func<int,string> func5 = delegate (int i) { Console.WriteLine($"使用delegate的委托,参数值是:{i}"); return "delegate (int i)";};
    31. Console.WriteLine("返回值={0}",func5(22));
    32. Console.WriteLine("----------------------------");
    33. // 使用匿名委托
    34. Func<string,string> func6 = (string s) => { Console.WriteLine($"使用匿名委托,参数值是:{s}"); return "func6"; };
    35. func6("C#");
    36. Console.WriteLine("----------------------------");
    37. // 多个参数无返回值的委托
    38. Func<int, string, string> func7 = new Func<int, string, string>(FuncWithMulitPara);
    39. Console.WriteLine("返回值={0}",func7(33, "Java"));
    40. Console.WriteLine("----------------------------");
    41. // 使用delegate
    42. Func<int, int, string, string> func8 = delegate (int i1, int i2, string s)
    43. {
    44. Console.WriteLine($"三个参数的Func委托,参数1的值是:{i1},参数2的值是:{i2},参数3的值是:{s}");
    45. return s;
    46. };
    47. Console.WriteLine("返回值={0}",func8(44, 55, "Python"));
    48. Console.WriteLine("----------------------------");
    49. Func<int,int,string, string, string> func9 = (int i1,int i2, string s1,string s2) =>
    50. {
    51. Console.WriteLine($"使用四个参数的委托,参数1的值是:{i1},参数2的值是:{i2},参数3的值是:{s1},参数4的值是:{s2}");
    52. return s1;
    53. };
    54. // 执行委托
    55. Console.WriteLine("返回值={0}",func9(66,77, "C","CJavaPy"));
    56. Console.ReadKey();
    57. }
    58. static string FuncWithNoParaReturn()
    59. {
    60. Console.WriteLine("无参数有返回值的Func委托");
    61. return "value";
    62. }
    63. static string FuncWithPara(int i)
    64. {
    65. Console.WriteLine($"有参数有返回值的委托,参数值是:{i}");
    66. return "FuncWithPara";
    67. }
    68. static string FuncWithMulitPara(int i,string s)
    69. {
    70. Console.WriteLine($"有两个参数无返回值的委托,参数1的值是:{i},参数2的值是:{s}");
    71. return s;
    72. }
    73. }
    74. }

  • 相关阅读:
    excel怎么保存为模板,excel一张图怎么设置同一的格式,excel怎么保存为图表样式
    大数据必学Java基础(三十):IDEA的使用介绍
    Java程序员要掌握vue2知识
    苹果手机备份软件哪个好用?有哪些免费的第三方备份软件
    使用 Gorm 进行事务和错误处理
    c# 扩展类,扩展方法
    爬虫框架Scrapy学习笔记-1
    table多行表头渲染时出现位置错乱问题
    搞脑筋的日历积木
    Cloud整合Zookeeper代替Eureka
  • 原文地址:https://blog.csdn.net/lwf3115841/article/details/134236042