Action Delegar
Definição
Encapsula um método que não tem parâmetros e não retorna um valor.Encapsulates a method that has no parameters and does not return a value.
public delegate void Action();
public delegate void Action();
type Action = delegate of unit -> unit
Public Delegate Sub Action()
- Herança
Comentários
Você pode usar esse delegado para passar um método como um parâmetro sem declarar explicitamente um delegado personalizado.You can use this delegate to pass a method 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 não deve ter nenhum parâmetro e nenhum valor de retorno.This means that the encapsulated method must have no parameters and no return value. (Em C#, o método deve retornar void
.(In C#, the method must return void
. Em Visual Basic, ele deve ser definido pelo Sub
...End Sub
In Visual Basic, it must be defined by the Sub
…End Sub
construir.construct. Ele também pode ser um método que retorna um valor que é ignorado.) Normalmente, esse método é usado para executar uma operação.It can also be a method that returns a value that is ignored.) Typically, such a method is used to perform an operation.
Observação
Para fazer referência a um método que não tem parâmetros e retorna um valor, use o Func<TResult> delegado genérico em vez disso.To reference a method that has no parameters and returns a value, use the generic Func<TResult> delegate instead.
Quando você usa o Action delegado, não precisa definir explicitamente um delegado que encapsula um procedimento sem parâmetros.When you use the Action delegate, you do not have to explicitly define a delegate that encapsulates a parameterless procedure. Por exemplo, o código a seguir declara explicitamente um delegado chamado ShowValue
e atribui uma referência ao Name.DisplayToWindow
método de instância à sua instância delegada.For example, the following code explicitly declares a delegate named ShowValue
and assigns a reference to the Name.DisplayToWindow
instance method to its delegate instance.
using namespace System;
using namespace System::Windows::Forms;
public delegate void ShowValue();
public ref class Name
{
private:
String^ instanceName;
public:
Name(String^ name)
{
instanceName = name;
}
void DisplayToConsole()
{
Console::WriteLine(this->instanceName);
}
void DisplayToWindow()
{
MessageBox::Show(this->instanceName);
}
};
int main()
{
Name^ testName = gcnew Name(L"Koani");
ShowValue^ showMethod;
showMethod = gcnew ShowValue(testName, &Name::DisplayToWindow);
showMethod();
return 0;
}
using System;
using System.Windows.Forms;
public delegate void ShowValue();
public class Name
{
private string instanceName;
public Name(string name)
{
this.instanceName = name;
}
public void DisplayToConsole()
{
Console.WriteLine(this.instanceName);
}
public void DisplayToWindow()
{
MessageBox.Show(this.instanceName);
}
}
public class testTestDelegate
{
public static void Main()
{
Name testName = new Name("Koani");
ShowValue showMethod = testName.DisplayToWindow;
showMethod();
}
}
Public Delegate Sub ShowValue
Public Class Name
Private instanceName As String
Public Sub New(name As String)
Me.instanceName = name
End Sub
Public Sub DisplayToConsole()
Console.WriteLine(Me.instanceName)
End Sub
Public Sub DisplayToWindow()
MsgBox(Me.instanceName)
End Sub
End Class
Public Module testDelegate
Public Sub Main()
Dim testName As New Name("Koani")
Dim showMethod As ShowValue = AddressOf testName.DisplayToWindow
showMethod
End Sub
End Module
O exemplo a seguir simplifica esse código ao instanciar o Action 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 Action delegate instead of explicitly defining a new delegate and assigning a named method to it.
#using <System.Windows.Forms.dll>
using namespace System;
using namespace System::Windows::Forms;
public ref class Name
{
private:
String^ instanceName;
public:
Name(String^ name)
{
instanceName = name;
}
void DisplayToConsole()
{
Console::WriteLine(this->instanceName);
}
void DisplayToWindow()
{
MessageBox::Show(this->instanceName);
}
};
int main()
{
Name^ testName = gcnew Name(L"Koani");
System::Action^ showMethod;
showMethod += gcnew Action(testName, &Name::DisplayToWindow);
showMethod();
return 0;
}
using System;
using System.Windows.Forms;
public class Name
{
private string instanceName;
public Name(string name)
{
this.instanceName = name;
}
public void DisplayToConsole()
{
Console.WriteLine(this.instanceName);
}
public void DisplayToWindow()
{
MessageBox.Show(this.instanceName);
}
}
public class testTestDelegate
{
public static void Main()
{
Name testName = new Name("Koani");
Action showMethod = testName.DisplayToWindow;
showMethod();
}
}
Public Class Name
Private instanceName As String
Public Sub New(name As String)
Me.instanceName = name
End Sub
Public Sub DisplayToConsole()
Console.WriteLine(Me.instanceName)
End Sub
Public Sub DisplayToWindow()
MsgBox(Me.instanceName)
End Sub
End Class
Public Module testDelegate
Public Sub Main()
Dim testName As New Name("Koani")
Dim showMethod As Action = AddressOf testName.DisplayToWindow
showMethod
End Sub
End Module
Você também pode usar o Action delegado com métodos anônimos em C#, como ilustra o exemplo a seguir.You can also use the Action 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.)
using System;
using System.Windows.Forms;
public class Name
{
private string instanceName;
public Name(string name)
{
this.instanceName = name;
}
public void DisplayToConsole()
{
Console.WriteLine(this.instanceName);
}
public void DisplayToWindow()
{
MessageBox.Show(this.instanceName);
}
}
public class Anonymous
{
public static void Main()
{
Name testName = new Name("Koani");
Action showMethod = delegate() { testName.DisplayToWindow();} ;
showMethod();
}
}
Você também pode atribuir uma expressão lambda a uma Action instância de delegado, como ilustra o exemplo a seguir.You can also assign a lambda expression to an Action delegate instance, as the following example illustrates. (Para obter uma introdução a expressões lambda, consulte expressões lambda.)(For an introduction to lambda expressions, see Lambda Expressions.)
using System;
using System.Windows.Forms;
public class Name
{
private string instanceName;
public Name(string name)
{
this.instanceName = name;
}
public void DisplayToConsole()
{
Console.WriteLine(this.instanceName);
}
public void DisplayToWindow()
{
MessageBox.Show(this.instanceName);
}
}
public class LambdaExpression
{
public static void Main()
{
Name testName = new Name("Koani");
Action showMethod = () => testName.DisplayToWindow();
showMethod();
}
}
Public Class Name
Private instanceName As String
Public Sub New(name As String)
Me.instanceName = name
End Sub
Public Function DisplayToConsole() As Integer
Console.WriteLine(Me.instanceName)
Return 0
End Function
Public Function DisplayToWindow() As Integer
Return MsgBox(Me.instanceName)
End Function
End Class
Module LambdaExpression
Public Sub Main()
Dim name1 As New Name("Koani")
Dim methodCall As Action = Sub() name1.DisplayToWindow()
methodCall()
End Sub
End Module
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. |