我目前正在学习C#,想知道它的结尾,是在t.Start还是从那里继续,还是应该从threadMethod调用另一个方法?提前致谢。

private void startThread()
{
    Thread t = new Thread(new ThreadStart(threadMethod));
    t.Start();
}

private void threadMethod()
{
    //do stuff
}

最佳答案

当线程的方法完成或失败时(在您的情况下为threadMethod()),线程将停止。

09-20 06:01