El constructor Thread(ParameterizedThreadStart) se utiliza para inicializar una nueva instancia de la clase Thread. Definió un delegado que permite que un objeto pase al subproceso cuando se inicia el subproceso. Este constructor da ArgumentNullException si el parámetro de este constructor es nulo.
Sintaxis:
public Thread(ParameterizedThreadStart start);
Aquí, start es un delegado que representa un método que se invocará cuando este subproceso comience a ejecutarse.
Los siguientes programas ilustran el uso del constructor Thread(ParameterizedThreadStart) :
Ejemplo 1:
CSharp
// C# program to illustrate the // use of Thread(ParameterizedThreadStart) // constructor with non-static method using System; using System.Threading; public class MYTHREAD { // Non-static method public void Job() { for (int z = 0; z < 3; z++) { Console.WriteLine("My thread is "+ "in progress...!!"); } } } // Driver Class public class GFG { // Main Method public static void Main() { // Creating object of MYTHREAD class MYTHREAD obj = new MYTHREAD(); // Creating a thread which // calls a parameterized instance method Thread thr = new Thread(obj.Job); thr.Start(); } }
Producción:
My thread is in progress...!! My thread is in progress...!! My thread is in progress...!!
Ejemplo 2:
CSharp
// C# program to illustrate the use of // Thread(ParameterizedThreadStart) // constructor with static method using System; using System.Threading; // Driver Class public class GFG { // Main Method public static void Main() { // Creating a thread which calls // a parameterized static-method Thread thr = new Thread(Job); thr.Start(); } // Static method public static void Job() { Console.WriteLine("My thread is"+ " in progress...!!"); for (int z = 0; z < 3; z++) { Console.WriteLine(z); } } }
Producción:
My thread is in progress...!! 0 1 2
Referencia:
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA