Func<T1,T2,TResult> Delegat
Definition
Kapselt eine Methode, die über zwei Parameter verfügt und einen Wert des Typs zurückgibt, der durch den TResult
-Parameter angegeben wird.Encapsulates a method that has two parameters and returns a value of the type specified by the TResult
parameter.
generic <typename T1, typename T2, typename TResult>
public delegate TResult Func(T1 arg1, T2 arg2);
public delegate TResult Func<in T1,in T2,out TResult>(T1 arg1, T2 arg2);
public delegate TResult Func<T1,T2,TResult>(T1 arg1, T2 arg2);
type Func<'T1, 'T2, 'Result> = delegate of 'T1 * 'T2 -> 'Result
Public Delegate Function Func(Of In T1, In T2, Out TResult)(arg1 As T1, arg2 As T2) As TResult
Public Delegate Function Func(Of T1, T2, TResult)(arg1 As T1, arg2 As T2) As TResult
Typparameter
- T1
Der Typ des ersten Parameters der Methode, die dieser Delegat kapselt.The type of the first parameter of the method that this delegate encapsulates.
Dieser Typparameter ist kontravariant. Das bedeutet, dass Sie entweder den angegebenen Typ oder einen weniger abgeleiteten Typ verwenden können. Weitere Informationen zu Kovarianz und Kontravarianz finden Sie unter Kovarianz und Kontravarianz in Generics.- T2
Der Typ des zweiten Parameters der Methode, die dieser Delegat kapselt.The type of the second parameter of the method that this delegate encapsulates.
Dieser Typparameter ist kontravariant. Das bedeutet, dass Sie entweder den angegebenen Typ oder einen weniger abgeleiteten Typ verwenden können. Weitere Informationen zu Kovarianz und Kontravarianz finden Sie unter Kovarianz und Kontravarianz in Generics.- TResult
Der Typ des Rückgabewerts der Methode, die dieser Delegat kapselt.The type of the return value of the method that this delegate encapsulates.
Dieser Typparameter ist kovariant. Das bedeutet, dass Sie entweder den angegebenen Typ oder einen stärker abgeleiteten Typ verwenden können. Weitere Informationen zu Kovarianz und Kontravarianz finden Sie unter Kovarianz und Kontravarianz in Generics.Parameter
- arg1
- T1
Der erste Parameter der Methode, die dieser Delegat kapselt.The first parameter of the method that this delegate encapsulates.
- arg2
- T2
Der zweite Parameter der Methode, die dieser Delegat kapselt.The second parameter of the method that this delegate encapsulates.
Rückgabewert
- TResult
Der Rückgabewert der Methode, die dieser Delegat kapselt.The return value of the method that this delegate encapsulates.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie ein Delegat deklariert und verwendet wird Func<T1,T2,TResult> .The following example demonstrates how to declare and use a Func<T1,T2,TResult> delegate. In diesem Beispiel wird eine Func<T1,T2,TResult> -Variable deklariert und ihr ein Lambda-Ausdruck zugewiesen, der einen String -Wert und einen- Int32 Wert als Parameter annimmt.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. Der Lambda-Ausdruck gibt zurück true
, wenn die Länge des- String Parameters gleich dem Wert des- Int32 Parameters ist.The lambda expression returns true
if the length of the String parameter is equal to the value of the Int32 parameter. Der Delegat, der diese Methode kapselt, wird anschließend in einer Abfrage verwendet, um Zeichen folgen in einem Array von Zeichen folgen zu filtern.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
Hinweise
Mit diesem Delegaten können Sie eine Methode darstellen, die als Parameter übergeben werden kann, ohne explizit einen benutzerdefinierten Delegaten zu deklarieren.You can use this delegate to represent a method that can be passed as a parameter without explicitly declaring a custom delegate. Die gekapselte Methode muss der Methoden Signatur entsprechen, die von diesem Delegaten definiert wird.The encapsulated method must correspond to the method signature that is defined by this delegate. Dies bedeutet, dass die gekapselte Methode über zwei Parameter verfügen muss, die jeweils als Wert an Sie übermittelt werden, und dass ein Wert zurückgegeben werden muss.This means that the encapsulated method must have two parameters, each of which is passed to it by value, and that it must return a value.
Hinweis
Verwenden Sie stattdessen den generischen Delegaten, um auf eine Methode zu verweisen, die über zwei Parameter verfügt und zurückgibt void
(oder in Visual Basic, die als deklariert wird, und Sub
nicht als Function
) Action<T1,T2> .To reference a method that has two 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> delegate instead.
Wenn Sie den Func<T1,T2,TResult> Delegaten verwenden, müssen Sie nicht explizit einen Delegaten definieren, der eine Methode mit zwei Parametern kapselt.When you use the Func<T1,T2,TResult> delegate you do not have to explicitly define a delegate that encapsulates a method with two parameters. Der folgende Code deklariert z. b. explizit einen Delegaten mit dem Namen ExtractMethod
und weist der Delegatinstanz einen Verweis auf die- ExtractWords
Methode zu.For example, the following code explicitly declares a delegate named ExtractMethod
and assigns a reference to the ExtractWords
method to its delegate instance.
using System;
delegate string[] ExtractMethod(string stringToManipulate, int maximum);
public class DelegateExample
{
public static void Main()
{
// Instantiate delegate to reference ExtractWords method
ExtractMethod extractMeth = ExtractWords;
string title = "The Scarlet Letter";
// Use delegate instance to call ExtractWords method and display result
foreach (string word in extractMeth(title, 5))
Console.WriteLine(word);
}
private static string[] ExtractWords(string phrase, int limit)
{
char[] delimiters = new char[] {' '};
if (limit > 0)
return phrase.Split(delimiters, limit);
else
return phrase.Split(delimiters);
}
}
' Declare a delegate to represent string extraction method
Delegate Function ExtractMethod(ByVal stringToManipulate As String, _
ByVal maximum As Integer) As String()
Module DelegateExample
Public Sub Main()
' Instantiate delegate to reference ExtractWords method
Dim extractMeth As ExtractMethod = AddressOf ExtractWords
Dim title As String = "The Scarlet Letter"
' Use delegate instance to call ExtractWords method and display result
For Each word As String In extractMeth(title, 5)
Console.WriteLine(word)
Next
End Sub
Private Function ExtractWords(phrase As String, limit As Integer) As String()
Dim delimiters() As Char = {" "c}
If limit > 0 Then
Return phrase.Split(delimiters, limit)
Else
Return phrase.Split(delimiters)
End If
End Function
End Module
Im folgenden Beispiel wird dieser Code vereinfacht, indem ein Delegat instanziiert wird Func<T1,T2,TResult> , anstatt explizit einen neuen Delegaten zu definieren und ihm eine benannte Methode zuzuweisen.The following example simplifies this code by instantiating a Func<T1,T2,TResult> delegate instead of explicitly defining a new delegate and assigning a named method to it.
using System;
public class GenericFunc
{
public static void Main()
{
// Instantiate delegate to reference ExtractWords method
Func<string, int, string[]> extractMethod = ExtractWords;
string title = "The Scarlet Letter";
// Use delegate instance to call ExtractWords method and display result
foreach (string word in extractMethod(title, 5))
Console.WriteLine(word);
}
private static string[] ExtractWords(string phrase, int limit)
{
char[] delimiters = new char[] {' '};
if (limit > 0)
return phrase.Split(delimiters, limit);
else
return phrase.Split(delimiters);
}
}
Module GenericFunc
Public Sub Main()
' Instantiate delegate to reference ExtractWords method
Dim extractMeth As Func(Of String, Integer, String()) = AddressOf ExtractWords
Dim title As String = "The Scarlet Letter"
' Use delegate instance to call ExtractWords method and display result
For Each word As String In extractMeth(title, 5)
Console.WriteLine(word)
Next
End Sub
Private Function ExtractWords(phrase As String, limit As Integer) As String()
Dim delimiters() As Char = {" "c}
If limit > 0 Then
Return phrase.Split(delimiters, limit)
Else
Return phrase.Split(delimiters)
End If
End Function
End Module
Sie können den Delegaten Func<T1,T2,TResult> mit anonymen Methoden in c# verwenden, wie im folgenden Beispiel veranschaulicht.You can use the Func<T1,T2,TResult> delegate with anonymous methods in C#, as the following example illustrates. (Eine Einführung zu anonymen Methoden finden Sie unter Anonyme Methoden.)(For an introduction to anonymous methods, see Anonymous Methods.)
using System;
public class Anonymous
{
public static void Main()
{
Func<string, int, string[]> extractMeth = delegate(string s, int i)
{ char[] delimiters = new char[] {' '};
return i > 0 ? s.Split(delimiters, i) : s.Split(delimiters);
};
string title = "The Scarlet Letter";
// Use Func instance to call ExtractWords method and display result
foreach (string word in extractMeth(title, 5))
Console.WriteLine(word);
}
}
Sie können einem Delegaten auch einen Lambda-Ausdruck zuweisen Func<T1,T2,TResult> , wie im folgenden Beispiel veranschaulicht.You can also assign a lambda expression to a Func<T1,T2,TResult> delegate, as the following example illustrates. (Eine Einführung in Lambda-Ausdrücke finden Sie unter Lambda -Ausdrücke und Lambda-Ausdrücke.)(For an introduction to lambda expressions, see Lambda Expressions and Lambda Expressions.)
using System;
public class LambdaExpression
{
public static void Main()
{
char[] separators = new char[] {' '};
Func<string, int, string[]> extract = (s, i) =>
i > 0 ? s.Split(separators, i) : s.Split(separators) ;
string title = "The Scarlet Letter";
// Use Func instance to call ExtractWords method and display result
foreach (string word in extract(title, 5))
Console.WriteLine(word);
}
}
Module LambdaExpression
Public Sub Main()
Dim separators() As Char = {" "c}
Dim extract As Func(Of String, Integer, String()) = Function(s, i) _
CType(iif(i > 0, s.Split(separators, i), s.Split(separators)), String())
Dim title As String = "The Scarlet Letter"
For Each word As String In extract(title, 5)
Console.WriteLine(word)
Next
End Sub
End Module
Der zugrunde liegende Typ eines Lambda-Ausdrucks ist einer der generischen Delegaten Func
.The underlying type of a lambda expression is one of the generic Func
delegates. Dadurch ist es möglich, einen Lambda-Ausdruck als Parameter zu übergeben, ohne ihn explizit einem Delegaten zuzuweisen.This makes it possible to pass a lambda expression as a parameter without explicitly assigning it to a delegate. Insbesondere weil viele Methoden von Typen im- System.Linq Namespace Func<T1,T2,TResult> Parameter aufweisen, können Sie diese Methoden als Lambda-Ausdruck übergeben, ohne einen Delegaten explizit zu instanziieren Func<T1,T2,TResult> .In particular, because many methods of types in the System.Linq namespace have Func<T1,T2,TResult> parameters, you can pass these methods a lambda expression without explicitly instantiating a Func<T1,T2,TResult> delegate.
Erweiterungsmethoden
GetMethodInfo(Delegate) |
Ruft ein Objekt ab, das die Methode darstellt, die vom angegebenen Delegaten dargestellt wird.Gets an object that represents the method represented by the specified delegate. |