启动停止的线程?

时间:2011-08-01 11:28:40

标签: c# multithreading

我已经为启动和停止线程做了一个组合的开始/停止按钮。

看起来像这样:

private void btStartStop_Click(object sender, EventArgs e)
        {
            if (btStartStop.Text.Equals("Start"))
            {
                btStartStop.Text = "Stop";
                stopThread = false;

                ThreadState ts = thread.ThreadState;

                if (thread.ThreadState == ThreadState.Stopped)
                    thread = new Thread(DoWork);

                thread.Start();
            }
            else
            {
                btStartStop.Text = "Start";
                stopThread = true;
                thread.Join();
            }
        }

我可以像我一样检查线程状态,是否再次停止启动它?还是以其他方式,因为我不能只是启动一个线程,如果它停止?

1 个答案:

答案 0 :(得分:2)

是的,你可以。您只重用对线程对象的引用,将其设置为一个全新的线程对象。