C# 杀死线程程序


首先创建一个线程并启动它 −

// new thread
Thread thread = new Thread(c.display);
thread.Start();

现在显示线程并设置停止函数以停止线程的工作 −

public void display() {
   while (!flag) {
      Console.WriteLine("It's Working");
      Thread.Sleep(2000);
   }
}
public void Stop() {
   flag = true;
   }
}

示例

以下是学习如何在 C# 中杀死线程的完整代码。

现场演示

using System;
using System.Threading.Tasks;
using System.Threading;
class Demo {    
   static void Main(string[] args){
      MyClass c = new MyClass();      
      // new thread      
      Thread thread = new Thread(c.display);      
      thread.Start();      
      Console.WriteLine("Press any key to exit!");      
      Console.ReadKey();      
      c.Stop();      
       thread.Join();    
   }
}
public class MyClass {    
   private bool flag = false;    
   public void display() {      
      while (!flag) {        
         Console.WriteLine("It's Working");    
         Thread.Sleep(2000);      
       }    .
   }    .
   public void Stop() {      
      flag = true;    
   }
}

输出

It's Working
Press any key to exit!

更新时间: 19-Jun-2020

864 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告