System.Func 委托

上一篇:System.Func 类 下一篇:System.Func 类

方法描述

封装一个具有四个参数并返回 TResult 参数指定的类型值的方法。

语法定义(C# System.Func 委托 的用法)

public delegate TResult Func(
	T1 arg1,
	T2 arg2,
	T3 arg3,
	T4 arg4
)

构造函数

构造函数名称 构造函数描述

成员/方法

方法名称 方法描述

提示和注释

可以使用此委托表示一种能以参数形式传递的方法,而不用显式声明自定义委托。 封装的方法必须与此委托定义的方法签名相对应。 也就是说,封装的方法必须具有四个均通过值传递给它的参数,并且必须返回值。

注意

若要引用具有四个参数并返回 void 的方法(或者要在 Visual Basic 中引用被声明为 Sub 而不是被声明为 Function 的方法),请改用泛型 Action 委托。

在使用 Func 委托时,不必显式定义一个封装具有四个参数的方法的委托。 例如,以下代码显式声明了一个名为 Searcher 的泛型委托,并将对 IndexOf 方法的引用分配给其委托实例。

C#

VB

复制

using System;

delegate int Searcher(string searchString, int start, int count,

StringComparison type);

public class DelegateExample

{

public static void Main()

{

string title = "The House of the Seven Gables";

int position = 0;

Searcher finder = title.IndexOf;

do

{

int characters = title.Length - position;

position = finder("the", position, characters,

StringComparison.InvariantCultureIgnoreCase);

if (position >= 0)

{

position++;

Console.WriteLine("'The' found at position {0} in {1}.",

position, title);

}

} while (position > 0);

}

}

以下示例简化了此代码,它所用的方法是实例化 Func 委托,而不是显式定义一个新委托并将命名方法分配给该委托。

C#

VB

复制

using System;

public class DelegateExample

{

public static void Main()

{

string title = "The House of the Seven Gables";

int position = 0;

Func finder = title.IndexOf;

do

{

int characters = title.Length - position;

position = finder("the", position, characters,

StringComparison.InvariantCultureIgnoreCase);

if (position >= 0)

{

position++;

Console.WriteLine("'The' found at position {0} in {1}.",

position, title);

}

} while (position > 0);

}

}

您可以按照以下示例所演示的那样在 C# 中将 Func 委托与匿名方法一起使用。 (有关匿名方法的简介,请参见匿名方法(C# 编程指南)。)

C#

复制

using System;

public class DelegateExample

{

public static void Main()

{

string title = "The House of the Seven Gables";

int position = 0;

Func finder =

delegate(string s, int pos, int chars, StringComparison type)

{ return title.IndexOf(s, pos, chars, type); };

do

{

int characters = title.Length - position;

position = finder("the", position, characters,

StringComparison.InvariantCultureIgnoreCase);

if (position >= 0)

{

position++;

Console.WriteLine("'The' found at position {0} in {1}.",

position, title);

}

} while (position > 0);

}

}

您也可以按照以下示例所演示的那样将 lambda 表达式分配给 Func 委托。 (有关 lambda 表达式的简介,请参见 Lambda 表达式 (Visual Basic)和 Lambda 表达式(C# 编程指南)。)

C#

VB

复制

using System;

public class DelegateExample

{

public static void Main()

{

string title = "The House of the Seven Gables";

int position = 0;

Func finder =

(s, pos, chars, type) => title.IndexOf(s, pos, chars, type);

do

{

int characters = title.Length - position;

position = finder("the", position, characters,

StringComparison.InvariantCultureIgnoreCase);

if (position >= 0)

{

position++;

Console.WriteLine("'The' found at position {0} in {1}.",

position, title);

}

} while (position > 0);

}

}

Lambda 表达式的基础类型是泛型 Func 委托之一。 这样能以参数形式传递 lambda 表达式,而不用显式将其分配给委托。 尤其是,因为 System.Linq 命名空间中许多类型方法具有 Func 参数,因此可以给这些方法传递 lambda 表达式,而不用显式实例化 Func 委托。

System.Func 委托例子

随后在查询中使用封装此方法的委托来筛选字符串数组中的字符串。

using System;
using System.Collections.Generic;
using System.Linq;

public class Func3Example
{
   public static void Main()
   {
      Func predicate = (str, index) => str.Length == index;

      String[] words = { "orange", "apple", "Article", "elephant", "star", "and" };
      IEnumerable aWords = words.Where(predicate).Select(str => str);

      foreach (String word in aWords)
         Console.WriteLine(word);
   }
}

继承层次结构

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

线程安全

版本信息

.NET Framework 受以下版本支持:4、3.5 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。

上一篇:System.Func 类 下一篇:System.Func 类