在 C# 中将函数作为参数传递

Muhammad Maisam Abbas 2024年2月16日
  1. 在 C# 中使用 Func<> delegate 传递函数作为参数
  2. 在 C# 中使用 Action<> 委托将函数作为参数传递给另一个函数
在 C# 中将函数作为参数传递

本教程将介绍在 C# 中将函数作为参数传递给另一个函数的方法。

在 C# 中使用 Func<> delegate 传递函数作为参数

Func<T1, T-return> delegate在 C# 中定义了一个参数为 T1,返回类型为 T-return 的函数。我们可以使用 Func<T1, t-return> 委托将一个函数作为参数传递给另一个函数。下面的代码示例向我们展示了如何使用 C# 中的 Func<> 委托将函数作为参数传递给另一个函数。

using System;

namespace pass_function_as_parameter {
  class Program {
    static int functionToPass(int x) {
      return x + 10;
    }
    static void function(Func<int, int> functionToPass) {
      int i = functionToPass(22);
      Console.WriteLine("i = {0}", i);
    }
    static void Main(string[] args) {
      function(functionToPass);
    }
  }
}

输出:

i = 32

我们定义了函数 functionToPass(int x),该函数将一个整数值作为参数,将其递增 10,然后将结果返回为整数值。我们使用 Func<int, int> 委托将 functionToPass() 函数作为参数传递给 function() 函数。我们将值 22 传递给了 function() 函数内的 functionToPass() 函数。在主函数中,我们通过 function(functionToPass) 函数调用来调用该函数。Func<> 委托只能用于传递返回某些值的函数。

在 C# 中使用 Action<> 委托将函数作为参数传递给另一个函数

如果要传递不返回值的函数,则必须在 C# 中使用 Action<> 委托。Action<T> 委托的工作原理与函数委托相同。它用于通过 T 参数定义功能。我们可以使用 Action<> 委托将一个函数作为参数传递给另一个函数。下面的代码示例向我们展示了如何使用 C# 中的 Action<> 委托将函数作为参数传递给另一个函数。

using System;

namespace pass_function_as_parameter {
  class Program {
    static void functionToPass2(int x) {
      int increment = x + 10;
      Console.WriteLine("increment = {0}", increment);
    }
    static void function2(Action<int> functionToPass2) {
      functionToPass2(22);
    }
    static void Main(string[] args) {
      function2(functionToPass2);
    }
  }
}

输出:

increment = 32

我们定义了函数 functionToPass2(int x),该函数将整数值作为参数,并以 10 递增,并打印结果。我们通过 Action<int> 委托将 functionToPass2() 函数作为参数传递给 function() 函数。我们将值 22 传递给了 function2() 函数中的 functionToPass2() 函数。在主函数中,我们通过 function2(functionToPass2) 函数调用来调用该函数。Action<> 委托只能用于传递不返回任何值的函数。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp Function