Thread 线程简单例子

时间:2021-04-07 10:21:56
//这个方法是 静态的
public static void ThreadFunc()
{//计数器
int count = ;
while(true)
{
//休眠1秒
Thread.Sleep();
//计数器递增
count++;
//输出
Console.WriteLine("静态执行次数{0}",count);
}
} //启动线程代码
public static void StartThread()
{
ThreadStart ts = new ThreadStart(ThreadFunc);
Thread t = new Thread(ts);
       t.IsBackground = true; //后台运行,不添加程序关闭后,线程依然会继续运行
        t.Start(); 
    }