如何让 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
广告
数据结构
网络
关系数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP