线程(Thread)

作者:追风剑情 发布于:2014-9-1 23:23 分类:C#

  1. using System;
  2. using System.Threading;
  3.  
  4. namespace ThreadTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. //创建两条线程a,b
  11. Thread a = new Thread(new ThreadStart(ThreadA));
  12. Thread b = new Thread(new ThreadStart(ThreadB));
  13. //启动线程a,b
  14. a.Start();
  15. b.Start();
  16.  
  17. //等待a,b线程结束后再往下执行
  18. a.Join();
  19. b.Join();
  20.  
  21. Console.WriteLine("\nMain End!");
  22.  
  23. Console.ReadKey();
  24. }
  25.  
  26. static void ThreadA()
  27. {
  28. for (int i = 0; i < 20; i++)
  29. {
  30. Console.Write("A");
  31. Thread.Sleep(1);//让出时间片
  32. }
  33. }
  34.  
  35. static void ThreadB()
  36. {
  37. for (int i = 0; i < 50; i++)
  38. {
  39. Console.Write("B");
  40. Thread.Sleep(1);//让出时间片
  41. }
  42. }
  43. }
  44. }

运行结果

Thread运行结果.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号