ThreadStart Delegált

Definíció

Azt a metódust jelöli, amely egy Thread.

public delegate void ThreadStart();
public delegate void ThreadStart();
[System.Runtime.InteropServices.ComVisible(true)]
public delegate void ThreadStart();
type ThreadStart = delegate of unit -> unit
[<System.Runtime.InteropServices.ComVisible(true)>]
type ThreadStart = delegate of unit -> unit
Public Delegate Sub ThreadStart()
Attribútumok

Példák

Az alábbi példakód egy példánymetódussal és statikus metódussal rendelkező delegált létrehozására és használatára ThreadStart szolgáló szintaxist mutatja be.

Egy másik egyszerű példát, amely bemutatja, hogyan hozhat létre meghatalmazottat ThreadStart , tekintse meg a metódus túlterhelését Thread.Start() . További információ a szállétrehozásról: Szálak létrehozása és adatok továbbítása a kezdési időpontban.

using System;
using System.Threading;

class Test
{
    static void Main() 
    {
        // To start a thread using a static thread procedure, use the
        // class name and method name when you create the ThreadStart
        // delegate. Beginning in version 2.0 of the .NET Framework,
        // it is not necessary to create a delegate explicitly. 
        // Specify the name of the method in the Thread constructor, 
        // and the compiler selects the correct delegate. For example:
        //
        // Thread newThread = new Thread(Work.DoWork);
        //
        ThreadStart threadDelegate = new ThreadStart(Work.DoWork);
        Thread newThread = new Thread(threadDelegate);
        newThread.Start();

        // To start a thread using an instance method for the thread 
        // procedure, use the instance variable and method name when 
        // you create the ThreadStart delegate. Beginning in version
        // 2.0 of the .NET Framework, the explicit delegate is not
        // required.
        //
        Work w = new Work();
        w.Data = 42;
        threadDelegate = new ThreadStart(w.DoMoreWork);
        newThread = new Thread(threadDelegate);
        newThread.Start();
    }
}

class Work 
{
    public static void DoWork() 
    {
        Console.WriteLine("Static thread procedure."); 
    }
    public int Data;
    public void DoMoreWork() 
    {
        Console.WriteLine("Instance thread procedure. Data={0}", Data); 
    }
}

/* This code example produces the following output (the order 
   of the lines might vary):
Static thread procedure.
Instance thread procedure. Data=42
 */
Imports System.Threading

Public Class Test

    <MTAThread> _
    Shared Sub Main()
        ' To start a thread using a static thread procedure, use the
        ' class name and method name when you create the ThreadStart
        ' delegate. Visual Basic expands the AddressOf expression 
        ' to the appropriate delegate creation syntax:
        '    New ThreadStart(AddressOf Work.DoWork)
        '
        Dim newThread As New Thread(AddressOf Work.DoWork)
        newThread.Start()

        ' To start a thread using an instance method for the thread 
        ' procedure, use the instance variable and method name when 
        ' you create the ThreadStart delegate. Visual Basic expands 
        ' the AddressOf expression to the appropriate delegate 
        ' creation syntax:
        '    New ThreadStart(AddressOf w.DoMoreWork)
        '
        Dim w As New Work()
        w.Data = 42
        newThread = new Thread(AddressOf w.DoMoreWork)
        newThread.Start()
    End Sub
End Class

Public Class Work 
    Public Shared Sub DoWork()
        Console.WriteLine("Static thread procedure.")
    End Sub
    Public Data As Integer
    Public Sub DoMoreWork() 
        Console.WriteLine("Instance thread procedure. Data={0}", Data) 
    End Sub
End Class

' This code example produces the following output (the order 
'   of the lines might vary):
'
'Static thread procedure.
'Instance thread procedure. Data=42

Megjegyzések

Felügyelt szál létrehozásakor a szálon végrehajtott metódust a ThreadStart konstruktornak Thread átadott meghatalmazott vagy ParameterizedThreadStart meghatalmazott képviseli. A szál csak a metódus meghívása után kezdi meg a Thread.Start végrehajtást. A végrehajtás a metódus első sorában kezdődik, amelyet a meghatalmazott vagy ParameterizedThreadStart a ThreadStart meghatalmazott képvisel.

Note

Visual Basic és C# felhasználók kihagyhatják a ThreadStart vagy ParameterizedThreadStart delegált konstruktort a szál létrehozásakor. A Visual Basic használja a AddressOf operátort, amikor a metódust a Thread konstruktornak adja át, például Dim t As New Thread(AddressOf ThreadProc). A C#-ban egyszerűen adja meg a szál eljárásának nevét. A fordító kiválasztja a megfelelő delegált konstruktort.

Bővítő metódusok

Name Description
GetMethodInfo(Delegate)

Lekéri a megadott meghatalmazott által képviselt metódust képviselő objektumot.

A következőre érvényes:

Lásd még