Func<T1,T2,T3,T4,TResult> Делегат
Определение
Инкапсулирует метод, который имеет четыре параметра и возвращает значение типа, указанного в параметре TResult
.Encapsulates a method that has four parameters and returns a value of the type specified by the TResult
parameter.
generic <typename T1, typename T2, typename T3, typename T4, typename TResult>
public delegate TResult Func(T1 arg1, T2 arg2, T3 arg3, T4 arg4);
public delegate TResult Func<in T1,in T2,in T3,in T4,out TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4);
public delegate TResult Func<T1,T2,T3,T4,TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4);
type Func<'T1, 'T2, 'T3, 'T4, 'Result> = delegate of 'T1 * 'T2 * 'T3 * 'T4 -> 'Result
Public Delegate Function Func(Of In T1, In T2, In T3, In T4, Out TResult)(arg1 As T1, arg2 As T2, arg3 As T3, arg4 As T4) As TResult
Public Delegate Function Func(Of T1, T2, T3, T4, TResult)(arg1 As T1, arg2 As T2, arg3 As T3, arg4 As T4) As TResult
Параметры типа
- T1
Тип первого параметра метода, инкапсулируемого данным делегатом.The type of the first parameter of the method that this delegate encapsulates.
Это контравариантный параметр типа. Это означает, что вы можете использовать любой из указанных типов или любой тип, являющийся менее производным. Дополнительные сведения о ковариантности и контрвариантности см. в статье Ковариантность и контрвариантность в универсальных шаблонах.- T2
Тип второго параметра метода, инкапсулируемого этим делегатом.The type of the second parameter of the method that this delegate encapsulates.
Это контравариантный параметр типа. Это означает, что вы можете использовать любой из указанных типов или любой тип, являющийся менее производным. Дополнительные сведения о ковариантности и контрвариантности см. в статье Ковариантность и контрвариантность в универсальных шаблонах.- T3
Тип третьего параметра метода, инкапсулируемого этим делегатом.The type of the third parameter of the method that this delegate encapsulates.
Это контравариантный параметр типа. Это означает, что вы можете использовать любой из указанных типов или любой тип, являющийся менее производным. Дополнительные сведения о ковариантности и контрвариантности см. в статье Ковариантность и контрвариантность в универсальных шаблонах.- T4
Тип четвертого параметра метода, инкапсулируемого этим делегатом.The type of the fourth parameter of the method that this delegate encapsulates.
Это контравариантный параметр типа. Это означает, что вы можете использовать любой из указанных типов или любой тип, являющийся менее производным. Дополнительные сведения о ковариантности и контрвариантности см. в статье Ковариантность и контрвариантность в универсальных шаблонах.- TResult
Тип возвращаемого значения метода, инкапсулируемого данным делегатом.The type of the return value of the method that this delegate encapsulates.
Это ковариантный параметр типа. Это означает, что вы можете использовать любой из указанных типов или любой тип, являющийся более производным. Дополнительные сведения о ковариантности и контрвариантности см. в статье Ковариантность и контрвариантность в универсальных шаблонах.Параметры
- arg1
- T1
Первый параметр метода, инкапсулируемого данным делегатом.The first parameter of the method that this delegate encapsulates.
- arg2
- T2
Второй параметр метода, инкапсулируемого данным делегатом.The second parameter of the method that this delegate encapsulates.
- arg3
- T3
Третий параметр метода, инкапсулируемого данным делегатом.The third parameter of the method that this delegate encapsulates.
- arg4
- T4
Четвертый параметр метода, инкапсулируемого этим делегатом.The fourth parameter of the method that this delegate encapsulates.
Возвращаемое значение
- TResult
Возвращаемое значение метода, инкапсулируемого данным делегатом.The return value of the method that this delegate encapsulates.
- Наследование
Примеры
В следующем примере показано, как объявить и использовать Func<T1,T2,TResult> делегат.The following example demonstrates how to declare and use a Func<T1,T2,TResult> delegate. В этом примере объявляется Func<T1,T2,TResult> переменная и ей присваивается лямбда-выражение, принимающее String значение и Int32 значение в качестве параметров.This example declares a Func<T1,T2,TResult> variable and assigns it a lambda expression that takes a String value and an Int32 value as parameters. Лямбда-выражение возвращает true
значение, если длина String параметра равна значению Int32 параметра.The lambda expression returns true
if the length of the String parameter is equal to the value of the Int32 parameter. Делегат, инкапсулирующий этот метод, затем используется в запросе для фильтрации строк в массиве строк.The delegate that encapsulates this method is subsequently used in a query to filter strings in an array of strings.
using System;
using System.Collections.Generic;
using System.Linq;
public class Func3Example
{
public static void Main()
{
Func<String, int, bool> predicate = (str, index) => str.Length == index;
String[] words = { "orange", "apple", "Article", "elephant", "star", "and" };
IEnumerable<String> aWords = words.Where(predicate).Select(str => str);
foreach (String word in aWords)
Console.WriteLine(word);
}
}
Imports System.Collections.Generic
Imports System.Linq
Public Module Func3Example
Public Sub Main()
Dim predicate As Func(Of String, Integer, Boolean) = Function(str, index) str.Length = index
Dim words() As String = { "orange", "apple", "Article", "elephant", "star", "and" }
Dim aWords As IEnumerable(Of String) = words.Where(predicate)
For Each word As String In aWords
Console.WriteLine(word)
Next
End Sub
End Module
Комментарии
Этот делегат можно использовать для представления метода, который можно передать в качестве параметра без явного объявления пользовательского делегата.You can use this delegate to represent a method that can be passed as a parameter without explicitly declaring a custom delegate. Инкапсулированный метод должен соответствовать сигнатуре метода, определяемого этим делегатом.The encapsulated method must correspond to the method signature that is defined by this delegate. Это означает, что инкапсулированный метод должен иметь четыре параметра, каждый из которых передается в него по значению и должен возвращать значение.This means that the encapsulated method must have four parameters, each of which is passed to it by value, and that it must return a value.
Примечание
Для ссылки на метод, который имеет четыре параметра и возвращает void
(или в Visual Basic, который объявлен как a, Sub
а не как Function
), вместо него следует использовать универсальный Action<T1,T2,T3,T4> делегат.To reference a method that has four parameters and returns void
(or in Visual Basic, that is declared as a Sub
rather than as a Function
), use the generic Action<T1,T2,T3,T4> delegate instead.
При использовании Func<T1,T2,T3,T4,TResult> делегата нет необходимости явно определять делегат, инкапсулирующий метод с четырьмя параметрами.When you use the Func<T1,T2,T3,T4,TResult> delegate, you do not have to explicitly define a delegate that encapsulates a method with four parameters. Например, следующий код явно объявляет универсальный делегат с именем Searcher
и присваивает ссылку на IndexOf метод его экземпляру делегата.For example, the following code explicitly declares a generic delegate named Searcher
and assigns a reference to the IndexOf method to its delegate instance.
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);
}
}
Delegate Function Searcher(searchString As String, _
start As Integer, _
count As Integer, _
type As StringComparison) As Integer
Module DelegateExample
Public Sub Main()
Dim title As String = "The House of the Seven Gables"
Dim position As Integer = 0
Dim finder As Searcher = AddressOf title.IndexOf
Do
Dim characters As Integer = title.Length - position
position = finder("the", position, characters, _
StringComparison.InvariantCultureIgnoreCase)
If position >= 0 Then
position += 1
Console.WriteLine("'The' found at position {0} in {1}.", _
position, title)
End If
Loop While position > 0
End Sub
End Module
В следующем примере этот код упрощается путем создания экземпляра Func<T1,T2,T3,T4,TResult> делегата вместо явного определения нового делегата и назначения ему именованного метода.The following example simplifies this code by instantiating the Func<T1,T2,T3,T4,TResult> delegate instead of explicitly defining a new delegate and assigning a named method to it.
using System;
public class DelegateExample
{
public static void Main()
{
string title = "The House of the Seven Gables";
int position = 0;
Func<string, int, int, StringComparison, int> 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);
}
}
Module DelegateExample
Public Sub Main()
Dim title As String = "The House of the Seven Gables"
Dim position As Integer = 0
Dim finder As Func(Of String, Integer, Integer, StringComparison, Integer) _
= AddressOf title.IndexOf
Do
Dim characters As Integer = title.Length - position
position = finder("the", position, characters, _
StringComparison.InvariantCultureIgnoreCase)
If position >= 0 Then
position += 1
Console.WriteLine("'The' found at position {0} in {1}.", _
position, title)
End If
Loop While position > 0
End Sub
End Module
Делегат можно использовать Func<T1,T2,T3,T4,TResult> с анонимными методами в C#, как показано в следующем примере.You can use the Func<T1,T2,T3,T4,TResult> delegate with anonymous methods in C#, as the following example illustrates. (Общие сведения о анонимных методах см. в разделе анонимные методы.)(For an introduction to anonymous methods, see Anonymous Methods.)
using System;
public class DelegateExample
{
public static void Main()
{
string title = "The House of the Seven Gables";
int position = 0;
Func<string, int, int, StringComparison, int> 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);
}
}
Можно также присвоить делегату лямбда-выражение Func<T1,T2,T3,T4,TResult> , как показано в следующем примере.You can also assign a lambda expression to a Func<T1,T2,T3,T4,TResult> delegate, as the following example illustrates. (Общие сведения о лямбда-выражениях см. в разделе лямбда-выражения и лямбда-выражения.)(For an introduction to lambda expressions, see Lambda Expressions and Lambda Expressions.)
using System;
public class DelegateExample
{
public static void Main()
{
string title = "The House of the Seven Gables";
int position = 0;
Func<string, int, int, StringComparison, int> 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);
}
}
Module DelegateExample
Public Sub Main()
Dim title As String = "The House of the Seven Gables"
Dim position As Integer = 0
Dim finder As Func(Of String, Integer, Integer, StringComparison, Integer) _
= Function(s, pos, chars, type) _
title.IndexOf(s, pos, chars, type)
Do
Dim characters As Integer = title.Length - position
position = finder("the", position, characters, _
StringComparison.InvariantCultureIgnoreCase)
If position >= 0 Then
position += 1
Console.WriteLine("'The' found at position {0} in {1}.", _
position, title)
End If
Loop While position > 0
End Sub
End Module
Базовый тип лямбда-выражения является одним из универсальных Func
делегатов.The underlying type of a lambda expression is one of the generic Func
delegates. Это дает возможность передавать лямбда-выражение в качестве параметра без явного присвоения его делегату.This makes it possible to pass a lambda expression as a parameter without explicitly assigning it to a delegate. В частности, поскольку многие методы типов в System.Linq пространстве имен имеют Func
Параметры, эти методы можно передать лямбда-выражению без явного создания экземпляра Func
делегата.In particular, because many methods of types in the System.Linq namespace have Func
parameters, you can pass these methods a lambda expression without explicitly instantiating a Func
delegate.
Методы расширения
GetMethodInfo(Delegate) |
Получает объект, представляющий метод, представленный указанным делегатом.Gets an object that represents the method represented by the specified delegate. |