如何让 C# 程序休眠 x 毫秒?


要让一个 C# 程序休眠 x 毫秒,可以使用 Thread.Sleep() 方法。

要将其设置为 1000 毫秒 −

Thread.Sleep(1000);

以下代码展示了如何设置一个线程计数器,并在 for 循环的每个迭代上将其设置为休眠 1000 毫秒 −

示例

 在线演示

using System;
using System.Threading;

namespace MultithreadingApplication {
   public class ThreadCreationProgram {
      public static void CallToChildThread() {
         try {
            Console.WriteLine("Child thread starts");

            for (int counter = 0; counter <= 10; counter++) {
               Thread.Sleep(1000);
               Console.WriteLine(counter);
            }
            Console.WriteLine("Child Thread Completed");
         } catch (ThreadAbortException e) {
            Console.WriteLine("Thread Abort Exception");
         } finally {
            Console.WriteLine("Couldn't catch the Thread Exception");
         }
      }
      public static void Main(string[] args) {
         ThreadStart childref = new ThreadStart(CallToChildThread);
         Console.WriteLine("In Main: Creating the Child thread");

         Thread childThread = new Thread(childref);
         childThread.Start();

         //stop the main thread for some time
         Thread.Sleep(5000);
      }
   }
}

输出

In Main: Creating the Child thread
Child thread starts
0
1
2
3
4
5
6
7
8

更新于:2020 年 6 月 22 日

1K+ 次浏览

开启您的职业生涯

完成课程获取认证

开始
广告
© . All rights reserved.