Func<T,TResult> Delegar
Definição
Encapsula um método que tem um parâmetro e retorna um valor do tipo especificado pelo parâmetro TResult
.Encapsulates a method that has one parameter and returns a value of the type specified by the TResult
parameter.
generic <typename T, typename TResult>
public delegate TResult Func(T arg);
public delegate TResult Func<in T,out TResult>(T arg);
public delegate TResult Func<T,TResult>(T arg);
type Func<'T, 'Result> = delegate of 'T -> 'Result
Public Delegate Function Func(Of In T, Out TResult)(arg As T) As TResult
Public Delegate Function Func(Of T, TResult)(arg As T) As TResult
Parâmetros de tipo
- T
O tipo do parâmetro do método encapsulado por esse delegado.The type of the parameter of the method that this delegate encapsulates.
Este parâmetro de tipo é contravariante. Isso significa que é possível usar o tipo especificado ou qualquer tipo menos derivado. Para obter mais informações sobre covariância e contravariância, consulte Covariância e contravariância em genéricos.- TResult
O tipo do valor retornado do método encapsulado por esse delegado.The type of the return value of the method that this delegate encapsulates.
Este parâmetro de tipo é covariante. Isso significa que é possível usar o tipo especificado ou qualquer tipo mais derivado. Para obter mais informações sobre covariância e contravariância, consulte Covariância e contravariância em genéricos.Parâmetros
- arg
- T
O parâmetro do método encapsulado por esse delegado.The parameter of the method that this delegate encapsulates.
Valor Retornado
- TResult
O valor retornado do método encapsulado por esse delegado.The return value of the method that this delegate encapsulates.
- Herança
Exemplos
O exemplo a seguir demonstra como declarar e usar um Func<T,TResult> delegado.The following example demonstrates how to declare and use a Func<T,TResult> delegate. Este exemplo declara uma Func<T,TResult> variável e atribui a ela uma expressão lambda que converte os caracteres em uma cadeia de caracteres em letras maiúsculas.This example declares a Func<T,TResult> variable and assigns it a lambda expression that converts the characters in a string to uppercase. O delegado que encapsula esse método é posteriormente passado para o Enumerable.Select método para alterar as cadeias de caracteres em uma matriz de cadeias de caracteres para letras maiúsculas.The delegate that encapsulates this method is subsequently passed to the Enumerable.Select method to change the strings in an array of strings to uppercase.
// Declare a Func variable and assign a lambda expression to the
// variable. The method takes a string and converts it to uppercase.
Func<string, string> selector = str => str.ToUpper();
// Create an array of strings.
string[] words = { "orange", "apple", "Article", "elephant" };
// Query the array and select strings according to the selector method.
IEnumerable<String> aWords = words.Select(selector);
// Output the results to the console.
foreach (String word in aWords)
Console.WriteLine(word);
/*
This code example produces the following output:
ORANGE
APPLE
ARTICLE
ELEPHANT
*/
Imports System.Collections.Generic
Imports System.Linq
Module Func
Public Sub Main()
' Declare a Func variable and assign a lambda expression to the
' variable. The method takes a string and converts it to uppercase.
Dim selector As Func(Of String, String) = Function(str) str.ToUpper()
' Create an array of strings.
Dim words() As String = { "orange", "apple", "Article", "elephant" }
' Query the array and select strings according to the selector method.
Dim aWords As IEnumerable(Of String) = words.Select(selector)
' Output the results to the console.
For Each word As String In aWords
Console.WriteLine(word)
Next
End Sub
End Module
' This code example produces the following output:
'
' ORANGE
' APPLE
' ARTICLE
' ELEPHANT
Comentários
Você pode usar esse delegado para representar um método que pode ser passado como um parâmetro sem declarar explicitamente um delegado personalizado.You can use this delegate to represent a method that can be passed as a parameter without explicitly declaring a custom delegate. O método encapsulado deve corresponder à assinatura do método que é definida por esse delegado.The encapsulated method must correspond to the method signature that is defined by this delegate. Isso significa que o método encapsulado deve ter um parâmetro que é passado para ele por valor e que ele deve retornar um valor.This means that the encapsulated method must have one parameter that is passed to it by value, and that it must return a value.
Observação
Para fazer referência a um método que tem um parâmetro e retorna void
(ou em Visual Basic, que é declarado como um e Sub
não como um Function
), use o Action<T> delegado genérico em vez disso.To reference a method that has one parameter and returns void
(or in Visual Basic, that is declared as a Sub
rather than as a Function
), use the generic Action<T> delegate instead.
Quando você usa o Func<T,TResult> delegado, não precisa definir explicitamente um delegado que encapsula um método com um único parâmetro.When you use the Func<T,TResult> delegate, you do not have to explicitly define a delegate that encapsulates a method with a single parameter. Por exemplo, o código a seguir declara explicitamente um delegado chamado ConvertMethod
e atribui uma referência ao UppercaseString
método para sua instância delegada.For example, the following code explicitly declares a delegate named ConvertMethod
and assigns a reference to the UppercaseString
method to its delegate instance.
using System;
delegate string ConvertMethod(string inString);
public class DelegateExample
{
public static void Main()
{
// Instantiate delegate to reference UppercaseString method
ConvertMethod convertMeth = UppercaseString;
string name = "Dakota";
// Use delegate instance to call UppercaseString method
Console.WriteLine(convertMeth(name));
}
private static string UppercaseString(string inputString)
{
return inputString.ToUpper();
}
}
' Declare a delegate to represent string conversion method
Delegate Function ConvertMethod(ByVal inString As String) As String
Module DelegateExample
Public Sub Main()
' Instantiate delegate to reference UppercaseString method
Dim convertMeth As ConvertMethod = AddressOf UppercaseString
Dim name As String = "Dakota"
' Use delegate instance to call UppercaseString method
Console.WriteLine(convertMeth(name))
End Sub
Private Function UppercaseString(inputString As String) As String
Return inputString.ToUpper()
End Function
End Module
O exemplo a seguir simplifica esse código ao instanciar o Func<T,TResult> delegado, em vez de definir explicitamente um novo delegado e atribuir um método nomeado a ele.The following example simplifies this code by instantiating the Func<T,TResult> delegate instead of explicitly defining a new delegate and assigning a named method to it.
// Instantiate delegate to reference UppercaseString method
Func<string, string> convertMethod = UppercaseString;
string name = "Dakota";
// Use delegate instance to call UppercaseString method
Console.WriteLine(convertMethod(name));
string UppercaseString(string inputString)
{
return inputString.ToUpper();
}
// This code example produces the following output:
//
// DAKOTA
Module GenericFunc
Public Sub Main()
' Instantiate delegate to reference UppercaseString method
Dim convertMethod As Func(Of String, String) = AddressOf UppercaseString
Dim name As String = "Dakota"
' Use delegate instance to call UppercaseString method
Console.WriteLine(convertMethod(name))
End Sub
Private Function UppercaseString(inputString As String) As String
Return inputString.ToUpper()
End Function
End Module
Você também pode usar o Func<T,TResult> delegado com métodos anônimos em C#, como ilustra o exemplo a seguir.You can also use the Func<T,TResult> delegate with anonymous methods in C#, as the following example illustrates. (Para obter uma introdução aos métodos anônimos, consulte métodos anônimos.)(For an introduction to anonymous methods, see Anonymous Methods.)
Func<string, string> convert = delegate(string s)
{ return s.ToUpper();};
string name = "Dakota";
Console.WriteLine(convert(name));
// This code example produces the following output:
//
// DAKOTA
Você também pode atribuir uma expressão lambda a um Func<T,TResult> delegado, como ilustra o exemplo a seguir.You can also assign a lambda expression to a Func<T,TResult> delegate, as the following example illustrates. (Para obter uma introdução a expressões lambda, consulte expressões lambda e expressões lambda.)(For an introduction to lambda expressions, see Lambda Expressions and Lambda Expressions.)
Func<string, string> convert = s => s.ToUpper();
string name = "Dakota";
Console.WriteLine(convert(name));
// This code example produces the following output:
//
// DAKOTA
Module LambdaExpression
Public Sub Main()
Dim convert As Func(Of String, String) = Function(s) s.ToUpper()
Dim name As String = "Dakota"
Console.WriteLine(convert(name))
End Sub
End Module
O tipo subjacente de uma expressão lambda é um dos delegados genéricos Func
.The underlying type of a lambda expression is one of the generic Func
delegates. Isso torna possível passar uma expressão lambda como um parâmetro sem atribuí-la explicitamente a um delegado.This makes it possible to pass a lambda expression as a parameter without explicitly assigning it to a delegate. Em particular, como muitos métodos de tipos no System.Linq namespace têm Func<T,TResult> parâmetros, você pode passar esses métodos a uma expressão lambda sem instanciar explicitamente um Func<T,TResult> delegado.In particular, because many methods of types in the System.Linq namespace have Func<T,TResult> parameters, you can pass these methods a lambda expression without explicitly instantiating a Func<T,TResult> delegate.
Métodos de Extensão
GetMethodInfo(Delegate) |
Obtém um objeto que representa o método representado pelo delegado especificado.Gets an object that represents the method represented by the specified delegate. |