2009-05-06 3 views
31

Qualcuno sa come passare più parametri in una routine Thread.Start?thread con più parametri

Ho pensato di estendere la classe, ma la classe Thread C# è sigillata.

Ecco cosa penso il codice sarà simile:

... 
    Thread standardTCPServerThread = new Thread(startSocketServerAsThread); 

    standardServerThread.Start(orchestrator, initializeMemberBalance, arg, 60000); 
... 
} 

static void startSocketServerAsThread(ServiceOrchestrator orchestrator, List<int> memberBalances, string arg, int port) 
{ 
    startSocketServer(orchestrator, memberBalances, arg, port); 
} 

BTW, inizio un numero di thread con diversi orchestratori, saldi e le porte. Si prega di considerare anche la sicurezza del filo.

risposta

56

Provare a usare un'espressione lambda per catturare gli argomenti.

Thread standardTCPServerThread = 
    new Thread(
    unused => startSocketServerAsThread(initializeMemberBalance, arg, 60000) 
); 
+0

Quanto è sicuro eseguire l'espressione su un thread separato? –

+7

Questo è sicuro - con avvertenze.Può avere alcuni strani effetti collaterali, però, se modifichi le variabili immediatamente dopo aver chiamato questo, dal momento che stai effettivamente passando le variabili per riferimento. –

+0

qualche idea su come renderlo thread sicuro? –

11

È necessario avvolgerli in un unico oggetto.

Fare una classe personalizzata per passare i parametri è un'opzione. Puoi anche usare una matrice o un elenco di oggetti e impostare tutti i tuoi parametri.

3

Non è possibile. Crea un oggetto che contiene parametri di cui hai bisogno e passa è. Nella funzione thread, restituisce l'oggetto al suo tipo.

1

È possibile utilizzare l'array Oggetto e passarlo nella discussione. Passa al numero

System.Threading.ParameterizedThreadStart(yourFunctionAddressWhichContailMultipleParameters) 

Nel costruttore del filo.

yourFunctionAddressWhichContailMultipleParameters(object[]) 

Hai già impostato tutto il valore in objArray.

è necessario abcThread.Start(objectArray)

0

Si potrebbe curry la funzione di "lavoro" con un'espressione lambda:

public void StartThread() 
{ 
    // ... 
    Thread standardTCPServerThread = new Thread(
     () => standardServerThread.Start(/* whatever arguments */)); 

    standardTCPServerThread.Start(); 
} 
+0

mmmm di agnello al curry. – Pete

7

Utilizzare la 'Task' modello:

public class MyTask 
{ 
    string _a; 
    int _b; 
    int _c; 
    float _d; 

    public event EventHandler Finished; 

    public MyTask(string a, int b, int c, float d) 
    { 
     _a = a; 
     _b = b; 
     _c = c; 
     _d = d; 
    } 

    public void DoWork() 
    { 
     Thread t = new Thread(new ThreadStart(DoWorkCore)); 
     t.Start(); 
    } 

    private void DoWorkCore() 
    { 
     // do some stuff 
     OnFinished(); 
    } 

    protected virtual void OnFinished() 
    { 
     // raise finished in a threadsafe way 
    } 
} 
9

Ecco un po 'di codice che utilizza la approccio array di oggetti menzionato qui un paio di volte.

... 
    string p1 = "Yada yada."; 
    long p2 = 4715821396025; 
    int p3 = 4096; 
    object args = new object[3] { p1, p2, p3 }; 
    Thread b1 = new Thread(new ParameterizedThreadStart(worker)); 
    b1.Start(args); 
    ... 
    private void worker(object args) 
    { 
     Array argArray = new object[3]; 
     argArray = (Array)args; 
     string p1 = (string)argArray.GetValue(0); 
     long p2 = (long)argArray.GetValue(1); 
     int p3 = (int)argArray.GetValue(2); 
     ... 
    }> 
+0

@Opus Penso che l'espressione lambda, la soluzione di JaredPar, sia più semplice da gestire (leggere, comprendere e aggiornare) –

5

NET 2 conversione di JaredPar rispondere

Thread standardTCPServerThread = new Thread(delegate (object unused) { 
     startSocketServerAsThread(initializeMemberBalance, arg, 60000); 
    }); 
2

Ho letto il vostro forum per scoprire come farlo e l'ho fatto in quel modo - potrebbe essere utile per qualcuno. Passo gli argomenti nel costruttore che crea per me il thread di lavoro in cui verrà eseguito il metodo - execute() metodo.

using System; 

using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Diagnostics; 
using System.Windows.Forms; 
using System.IO; 
using System.Threading; 
namespace Haart_Trainer_App 

{ 
    class ProcessRunner 
    { 
     private string process = ""; 
     private string args = ""; 
     private ListBox output = null; 
     private Thread t = null; 

    public ProcessRunner(string process, string args, ref ListBox output) 
    { 
     this.process = process; 
     this.args = args; 
     this.output = output; 
     t = new Thread(new ThreadStart(this.execute)); 
     t.Start(); 

    } 
    private void execute() 
    { 
     Process proc = new Process(); 
     proc.StartInfo.FileName = process; 
     proc.StartInfo.Arguments = args; 
     proc.StartInfo.UseShellExecute = false; 
     proc.StartInfo.RedirectStandardOutput = true; 
     proc.Start(); 
     string outmsg; 
     try 
     { 
      StreamReader read = proc.StandardOutput; 

     while ((outmsg = read.ReadLine()) != null) 
     { 

       lock (output) 
       { 
        output.Items.Add(outmsg); 
       } 

     } 
     } 
     catch (Exception e) 
     { 
      lock (output) 
      { 
       output.Items.Add(e.Message); 
      } 
     } 
     proc.WaitForExit(); 
     var exitCode = proc.ExitCode; 
     proc.Close(); 

    } 
} 
} 
2
void RunFromHere() 
{ 
    string param1 = "hello"; 
    int param2 = 42; 

    Thread thread = new Thread(delegate() 
    { 
     MyParametrizedMethod(param1,param2); 
    }); 
    thread.Start(); 
} 

void MyParametrizedMethod(string p,int i) 
{ 
// some code. 
} 
0

È necessario passare un singolo oggetto, ma se è troppo fastidio per definire il proprio oggetto per un singolo uso, è possibile utilizzare un Tuple.

+0

Esempio di funzionamento di mcmillab? –