返回首页DA系统C#IDE文件同步服务屏保 今天是: 2026-05-05    "立夏"  夏季的第一个节气,表示盛夏时节的正式开始

搜索
热搜: linux 技术
Hi~登录注册
查看: 1718|回复: 0

[转载] 【转载】如何在C#中使用sleep方法?

[复制链接]
发表于 2022-4-19 00:21:16 | 显示全部楼层 |阅读模式

少侠不来段修仙之旅吗~

您需要 登录 才可以下载或查看,没有帐号?注册成为修仙之旅的少年~

x
如何在C#中使用sleep方法?


线程的sleep方法用于将线程暂停特定的时间。
如果您想将睡眠设置为几秒钟,请像下面的代码片段一样使用它-

int sleepfor = 2000;
Thread.Sleep(sleepfor);

引用如下:
using System;
using System.Threading;  //必须





具体案例:
using System;
using System.Threading;

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

         int sleepfor = 2000;

         Console.WriteLine("Child Thread Paused for {0} seconds", sleepfor / 1000);
         Thread.Sleep(sleepfor);
         Console.WriteLine("Child thread resumes");
      }

      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();
         Console.ReadKey();
      }
   }
}







游客
回复
*滑块验证:

DA论坛飞机票来了~
快速回复 返回顶部 返回列表