web-dev-qa-db-ja.com

複数のパラメーターを持つスレッド

Thread.Startルーチンに複数のパラメーターを渡す方法を知っている人はいますか?

クラスを拡張することを考えましたが、C#Threadクラスは封印されています。

コードは次のようになります。

...
    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);
}

ところで、私はさまざまなオーケストレーター、天びん、ポートを使っていくつかのスレッドを開始します。スレッドの安全性も考慮してください。

37
Lucas B

ラムダ式を使用して引数をキャプチャしてみてください。

Thread standardTCPServerThread = 
  new Thread(
    unused => startSocketServerAsThread(initializeMemberBalance, arg, 60000)
  );
62
JaredPar

以下に、ここで何度か説明したオブジェクト配列のアプローチを使用する少しのコードを示します。

    ...
    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);
      ...
    }>
12
Opus

それらを単一のオブジェクトにラップする必要があります。

パラメーターを渡すカスタムクラスを作成することは1つのオプションです。オブジェクトの配列またはリストを使用して、その中のすべてのパラメーターを設定することもできます。

11
Reed Copsey

「タスク」パターンを使用します。

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 
   }
}
7

JaredPar回答の.NET 2変換

Thread standardTCPServerThread = new Thread(delegate (object unused) {
        startSocketServerAsThread(initializeMemberBalance, arg, 60000);
    });
6
Aaron P. Olds

できません。必要なパラメーターを含むオブジェクトを作成し、渡します。スレッド関数で、オブジェクトをその型にキャストします。

3
Kamarey
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.
}
3

私はあなたのフォーラムを読んでそれを行う方法を見つけましたが、私はそのようにしてやった-誰かに役立つかもしれません。メソッドを実行するスレッドを作成するコンストラクターに引数を渡します-execute() method.

 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
Marek Bar

Object配列を取得して、スレッドに渡すことができます。パス

_System.Threading.ParameterizedThreadStart(yourFunctionAddressWhichContailMultipleParameters) 
_

スレッドコンストラクターへ。

_yourFunctionAddressWhichContailMultipleParameters(object[])
_

ObjArrayにすべての値をすでに設定しています。

abcThread.Start(objectArray)する必要があります

1
Syed Tayyab Ali

ラムダ式を使用して「work」関数をカレーできます。

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

    standardTCPServerThread.Start();
}
0
mqp

1つのオブジェクトを渡す必要がありますが、1回の使用で独自のオブジェクトを定義するのが面倒な場合は、Tupleを使用できます。

0
mcmillab