C# Func入门一

这篇的主要目的是用一些例子展示如何使用Func。

Func其实是一个内置的委托,它带来了一些函数式编程特性,并有助于减少代码冗长。

Func只能包含0 ~ 16个输入参数,且必须有一个返回类型。(Func委托有16个重载。)

例子一:下面这例子是一个c# Func委托的简单演示(代表一个没有输入参数,有一个输出值的方法)

 //1.FuncExp1:不带参数的方法
        static string GetMessage()
        {
            return "Hello there!";
        }
        static void FuncExp1()
        {
            Func<string> sayHello = GetMessage;
            Console.WriteLine(sayHello());
        }

测试结果如下:

 例子二:两个数相加的演示

  //2.FunExp2:带两个参数的方法
        static int Sum(int x, int y)
        {
            return x + y;
        }
        static void FuncExp2()
        {
            Func<int, int, int> Add = Sum;
            Console.WriteLine(Add(20, 30));
        }

测试结果如下:

 例子三:三个数相加的演示

  //3.FunExp3:带三个参数的方法
        static int Sum2(int x, int y, int z)
        {
            return x + y + z;
        }
        static void FuncExp3()
        {
            Func<int, int, int, int> Add = Sum2;
            int result = Add(20, 30, 40);
            Console.WriteLine(result);
        }

测试结果如下:

 例子四 :三个数相加,这边使用Lambda表达式写法,而不是像上面那样用一个单独的函数写法。

可见c# lambda表达式简化了c# Func的创建

 static void Lambda1()
        {
            Func<int, int, int, int> Add = (x, y, z) => x + y + z;
            int result = Add(20, 30, 40);
            Console.WriteLine(result);
        }

 例子五:许多Linq方法使用Func委托作为参数,如Linq中的Where参数。以下例子展示的是从数组中筛选出只含有3个字母的元素。

 //6.c# Func Linq Where
        static void LabmdaWithWhere()
        {
            Func<string, bool> HasThree = str => str.Length == 3;
            string[] words =
        {
            "sky", "forest", "wood", "cloud", "falcon", "owl" , "ocean",
            "water", "bow", "tiny", "arc"
        };
            IEnumerable<string> threeLetterWords = words.Where(HasThree);
            //IEnumerable<string> three = words.Where(str => str.Length == 3);这种写法,看起来是不是很熟悉
            foreach (var word in threeLetterWords)
            {
                Console.WriteLine(word);
            }

        }

测试结果如下:

 以下例子六是为了方便理解例子七,例子七主要是为了展示Func委托也可以放在容器中。

例子六:

 //7.c# list of Func delegates
        static void ListofFunDelegates1()
        {
            var vals = new int[] { 1, 2, 3, 4, 5 };
            Func<int, int> square = x => x * x;
            var res = vals.Select(square);
            //var result = vals.Select(q => q * q);这种写法,看起来是不是很熟悉
            Console.WriteLine(string.Join(",", res));
        }

测试结果如下:

 例子七:Func委托也可以放在容器中(如果看得比较迷糊,先分解成例子六那样子,理解起来更容易)

 static void ListofFunDelegates2()
        {
            var vals = new int[] { 1, 2, 3, 4, 5 };
            Func<int, int> square = x => x * x;
            Func<int, int> cube = x => x * x * x;
            Func<int, int> inc = x => x + 1;
            var fns = new List<Func<int, int>> { inc, square, cube };
            foreach (var fn in fns)
            {
                var res = vals.Select(fn);
                //var result = vals.Select(q => q * q);这种写法,看起来是不是很熟悉
                Console.WriteLine(string.Join(",", res));
            }
        }

 测试结果如下:

参考网址如下:

https://zetcode.com/csharp/func/

本地代码在CSharpBasic\FuncTutorial

posted @ 2022-09-08 17:19  katesharing  阅读(5801)  评论(0编辑  收藏  举报