QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

手机号码,快捷登录

手机号码,快捷登录

查看: 1198|回复: 0

[C#/.NET] Task.Delay()和Thread.Sleep()有什么区别

[复制链接]

等级头衔

积分成就    金币 : 2857
   泡泡 : 1516
   精华 : 6
   在线时间 : 1317 小时
   最后登录 : 2025-3-19

丰功伟绩

优秀达人突出贡献荣誉管理论坛元老活跃会员

联系方式
发表于 2023-6-26 20:00:45 | 显示全部楼层 |阅读模式
很多时候我们需要做一段延时处理,就直接Thread.Sleep(n)处理了,但实际上延时也可以用Task.Delay(n),那二者之间有没有区别呢?4 ?* c. z, G2 `# {9 u% K% [
我们先来看一个案例:
# R" i/ F, l2 m3 t" H8 p
using System;
using System.Threading;
using System.Threading.Tasks;

namespace ConsoleApp22
{
    class Program
    {
        static void Main(string[] args)
        {
            //Good writing
            Task.Run(async () =>
            {
                int delayTimeCount = 0;
                while (true)
                {
                    Console.WriteLine($"Delay第{++delayTimeCount}秒");
                    await Task.Delay(1000);
                }
            });

            //Bad writing
            Task.Run(() =>
            {
                int sleepTimeCount = 0;
                while (true)
                {
                    Console.WriteLine($"Thread{++sleepTimeCount}秒");
                    Thread.Sleep(1000);
                }
            });

            Console.ReadKey();
        }
    }
}
运行结果:) y8 `4 O4 u/ ]' U
1.jpg . t% B: [1 S& ?0 x& x6 H% H
区别:( }/ h4 T4 x1 E; t; W
①.Thread.Sleep()是同步延迟,既然是同步的,自然会阻塞当前线程;Task.Delay()是异步延迟,则不会阻塞线程;1 ?9 [; p( U1 l; Y7 z& N/ o7 J
②.Thread.Sleep()不能中途取消,Task.Delay()可以,delay有四个重载方法,需要取消的话,可以调用Delay(int millisecondsDelay, CancellationToken cancellationToken)这个方法;+ z" Q3 |4 `: k& L2 {
        //
        // 摘要:
        //     Creates a task that completes after a specified number of milliseconds.
        //
        // 参数:
        //   millisecondsDelay:
        //     The number of milliseconds to wait before completing the returned task, or -1
        //     to wait indefinitely.
        //
        // 返回结果:
        //     A task that represents the time delay.
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     The millisecondsDelay argument is less than -1.
        public static Task Delay(int millisecondsDelay);
        //
        // 摘要:
        //     Creates a cancellable task that completes after a specified number of milliseconds.
        //
        // 参数:
        //   millisecondsDelay:
        //     The number of milliseconds to wait before completing the returned task, or -1
        //     to wait indefinitely.
        //
        //   cancellationToken:
        //     A cancellation token to observe while waiting for the task to complete.
        //
        // 返回结果:
        //     A task that represents the time delay.
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     The millisecondsDelay argument is less than -1.
        //
        //   T:System.Threading.Tasks.TaskCanceledException:
        //     The task has been canceled.
        //
        //   T:System.ObjectDisposedException:
        //     The provided cancellationToken has already been disposed.
        public static Task Delay(int millisecondsDelay, CancellationToken cancellationToken);
        //
        // 摘要:
        //     Creates a task that completes after a specified time interval.
        //
        // 参数:
        //   delay:
        //     The time span to wait before completing the returned task, or TimeSpan.FromMilliseconds(-1)
        //     to wait indefinitely.
        //
        // 返回结果:
        //     A task that represents the time delay.
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     delay represents a negative time interval other than TimeSpan.FromMilliseconds(-1).
        //     -or- The delay argument's System.TimeSpan.TotalMilliseconds property is greater
        //     than System.Int32.MaxValue.
        public static Task Delay(TimeSpan delay);
        //
        // 摘要:
        //     Creates a cancellable task that completes after a specified time interval.
        //
        // 参数:
        //   delay:
        //     The time span to wait before completing the returned task, or TimeSpan.FromMilliseconds(-1)
        //     to wait indefinitely.
        //
        //   cancellationToken:
        //     A cancellation token to observe while waiting for the task to complete.
        //
        // 返回结果:
        //     A task that represents the time delay.
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     delay represents a negative time interval other than TimeSpan.FromMilliseconds(-1).
        //     -or- The delay argument's System.TimeSpan.TotalMilliseconds property is greater
        //     than System.Int32.MaxValue.
        //
        //   T:System.Threading.Tasks.TaskCanceledException:
        //     The task has been canceled.
        //
        //   T:System.ObjectDisposedException:
        //     The provided cancellationToken has already been disposed.
        public static Task Delay(TimeSpan delay, CancellationToken cancellationToken);
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|小黑屋|paopaomj.COM ( 渝ICP备18007172号|渝公网安备50010502503914号 )

GMT+8, 2025-4-4 23:54

Powered by paopaomj X3.5 © 2016-2025 sitemap

快速回复 返回顶部 返回列表