码迷,mamicode.com
首页 > 编程语言 > 详细

初识线程

时间:2018-06-22 15:26:14      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:threading   初识   start   zha   sleep   art   read   system   class   

using System;

using System.Threading;

using System.Threading.Tasks;

class StartNewDemo

{

  static void Main()
  {

    while(true)

    {

      System.Threading.Thread thread = new System.Threading.Thread(new System.System.Threading.ThreadStart(Run));

      thread.Start();

      Thread.Sleep(10000);
    }
  }

  private static void Run()
  {

    Console.WriteLine("My name is MEzhanghanmo");
  }

}

初识线程

标签:threading   初识   start   zha   sleep   art   read   system   class   

原文地址:https://www.cnblogs.com/HansZimmer/p/9213499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!